femto-backend/Femto.Modules.Blog/Application/Commands/AddPostComment/AddPostCommentCommand.cs
2025-08-10 21:21:40 +02:00

5 lines
No EOL
186 B
C#

using Femto.Common.Domain;
namespace Femto.Modules.Blog.Application.Commands.AddPostComment;
public record AddPostCommentCommand(Guid PostId, Guid AuthorId, string Content) : ICommand;