Command.cs 380 B

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