Command.cs 261 B

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