| 12345678910111213 |
- using Application.Abstractions.Messaging;
- using Microsoft.AspNetCore.Http;
- using SharedKernel.Results;
- namespace Application.Features.Api.Feed.Create;
- public sealed record Command(
- int MemberID,
- string Content,
- List<string>? Tags,
- List<IFormFile>? Images,
- List<string>? Medias
- ) : ICommand<Result<Response>>;
|