- using Application.Abstractions.Messaging;
- using Microsoft.AspNetCore.Http;
- using SharedKernel.Results;
- namespace Application.Features.Api.MyPage.ChangeBanner;
- public sealed record Command(
- int MemberID,
- IFormFile? Banner
- ) : ICommand<Result<string?>>;
|