Command.cs 259 B

12345678910
  1. using Application.Abstractions.Messaging;
  2. using Microsoft.AspNetCore.Http;
  3. using SharedKernel.Results;
  4. namespace Application.Features.Api.MyPage.ChangeThumb;
  5. public sealed record Command(
  6. int MemberID,
  7. IFormFile? Thumb
  8. ) : ICommand<Result<string?>>;