Command.cs 285 B

12345678910111213
  1. using Application.Abstractions.Messaging;
  2. namespace Application.Features.Admin.Channel.List.Update;
  3. public sealed record Command(
  4. int ID,
  5. string Name,
  6. string? Handle,
  7. string YouTubeUrl,
  8. decimal PlatformFeeRate,
  9. bool IsVerified,
  10. bool IsActive
  11. ) : ICommand;