Command.cs 330 B

12345678910111213
  1. using Application.Abstractions.Messaging;
  2. using Microsoft.AspNetCore.Http;
  3. using SharedKernel.Results;
  4. namespace Application.Features.Api.Feed.Create;
  5. public sealed record Command(
  6. int MemberID,
  7. string Content,
  8. List<string>? Tags,
  9. List<IFormFile>? Images,
  10. List<string>? Medias
  11. ) : ICommand<Result<Response>>;