| 123456789101112131415161718192021 |
- namespace Application.Features.Admin.Channel.List.Get;
- public sealed class Response
- {
- public int ID { get; init; }
- public int MemberID { get; init; }
- public string? MemberEmail { get; init; }
- public string? MemberName { get; init; }
- public string? MemberSID { get; init; }
- public required string SID { get; init; }
- public required string Name { get; init; }
- public string? Handle { get; init; }
- public required string YouTubeUrl { get; init; }
- public decimal PlatformFeeRate { get; init; }
- public decimal StoreCommissionRate { get; init; }
- public bool IsVerified { get; init; }
- public bool IsActive { get; init; }
- public string? DonationCode { get; init; }
- public DateTime? UpdatedAt { get; init; }
- public DateTime CreatedAt { get; init; }
- }
|