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