using Application.Abstractions.Messaging; using SharedKernel.Results; namespace Application.Features.Api.Feed.Update; public sealed record Command( int PostID, int MemberID, string Content, List? Tags ) : ICommand;