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