Command.cs 281 B

1234567891011
  1. using Application.Abstractions.Messaging;
  2. using Microsoft.AspNetCore.Http;
  3. using SharedKernel.Results;
  4. namespace Application.Features.Api.ChannelTitle.UploadIcon;
  5. public sealed record Command(
  6. int ChannelID,
  7. int MemberID,
  8. IFormFile File
  9. ) : ICommand<Result<string>>;