using Application.Abstractions.Messaging; using SharedKernel.Results; using Microsoft.AspNetCore.Http; namespace Application.Features.Admin.Forum.Comment.CreateAnswer; public sealed record Command( int PostID, string Content, List? Files, string? AdminEmail ) : ICommand>;