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