Command.cs 407 B

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