| 1234567891011121314151617181920212223242526272829303132 |
- namespace Application.Features.Api.DonationAlert.GetConfig;
- public sealed record Response(IReadOnlyList<AlertConfigItem> List, string? WidgetToken);
- public sealed record AlertConfigItem(
- 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
- );
|