femto-backend/Femto.Modules.Blog/Domain/Posts/Commands/CreatePost/CreatePostCommand.cs
2025-05-03 15:38:57 +02:00

6 lines
No EOL
188 B
C#

using MediatR;
namespace Femto.Modules.Blog.Domain.Posts.Commands.CreatePost;
public record CreatePostCommand(Guid AuthorId, string Content, IEnumerable<Uri> Media)
: IRequest<Guid>;