femto-backend/Femto.Modules.Blog/Application/Commands/DeletePost/DeletePostCommand.cs
2025-05-21 00:19:49 +02:00

5 lines
No EOL
170 B
C#

using Femto.Common.Domain;
namespace Femto.Modules.Blog.Application.Commands.DeletePost;
public record DeletePostCommand(Guid PostId, Guid InitiatingUserId) : ICommand;