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? Tags, List? Images, List? Medias ) : ICommand>;