| 12345678910111213141516171819202122232425262728293031323334 |
- using Application.Abstractions.Messaging;
- namespace Application.Features.Api.DonationAlert.SaveConfig;
- public sealed record Command(
- int ChannelID,
- int MemberID,
- int? ID,
- string Title,
- int Amount,
- int MatchType,
- string Message,
- double PlayDelaySec,
- double DisplayDurationSec,
- string? PopupEffect,
- string? TextEffect,
- string? NicknameFontFamily,
- int NicknameFontSize,
- string NicknameFontColor,
- string? AmountFontFamily,
- int AmountFontSize,
- string AmountFontColor,
- string? MessageFontFamily,
- int MessageFontSize,
- string MessageFontColor,
- string? TemplateFontFamily,
- int TemplateFontSize,
- string TemplateFontColor,
- bool EnableImage,
- string? ImageUrl,
- bool EnableSound,
- string? SoundUrl,
- bool IsActive
- ) : ICommand;
|