6 lines
No EOL
188 B
C#
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>; |