using Application.Abstractions.Messaging; using SharedKernel.Results; using Microsoft.AspNetCore.Http; namespace Application.Features.Api.Forum.Comment.Create; public sealed record Command( int MemberID, int PostID, int? ParentID, string? Mention, string Content, bool IsSecret, List? Images, List? Medias, List? Files ) : ICommand>;