Command.cs 346 B

123456789101112131415
  1. using Application.Abstractions.Messaging;
  2. using SharedKernel.Results;
  3. namespace Application.Features.Api.ChannelTitle.UpdateChannelTitle;
  4. public sealed record Command(
  5. int MemberID,
  6. int TitleID,
  7. string Name,
  8. string? Description,
  9. long MinAmount,
  10. string Color,
  11. string? IconUrl,
  12. bool IsActive
  13. ) : ICommand<Result>;