Command.cs 307 B

1234567891011121314
  1. using Application.Abstractions.Messaging;
  2. namespace Application.Features.Channel.List.Create;
  3. public sealed record Command(
  4. int MemberID,
  5. string SID,
  6. string Name,
  7. string? Handle,
  8. string YouTubeUrl,
  9. decimal PlatformFeeRate,
  10. bool IsVerified,
  11. bool IsActive
  12. ) : ICommand<int>;