Response.cs 705 B

12345678910111213141516171819
  1. namespace Application.Features.Admin.Channel.List.Get;
  2. public sealed class Response
  3. {
  4. public int ID { get; init; }
  5. public int MemberID { get; init; }
  6. public string? MemberEmail { get; init; }
  7. public string? MemberName { get; init; }
  8. public string? MemberSID { get; init; }
  9. public required string SID { get; init; }
  10. public required string Name { get; init; }
  11. public string? Handle { get; init; }
  12. public required string YouTubeUrl { get; init; }
  13. public decimal PlatformFeeRate { get; init; }
  14. public bool IsVerified { get; init; }
  15. public bool IsActive { get; init; }
  16. public DateTime? UpdatedAt { get; init; }
  17. public DateTime CreatedAt { get; init; }
  18. }