| 12345678910111213141516171819 |
- 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 bool IsVerified { get; init; }
- public bool IsActive { get; init; }
- public DateTime? UpdatedAt { get; init; }
- public DateTime CreatedAt { get; init; }
- }
|