Response.cs 252 B

123456789101112
  1. namespace Application.Features.Api.Channel.GetByCode;
  2. public sealed record Response(
  3. int ID,
  4. string SID,
  5. string Name,
  6. string? Handle,
  7. string? ThumbnailUrl,
  8. long SubscriberCount,
  9. bool IsVerified,
  10. string? DonationCode
  11. );