8 lines
317 B
C#
8 lines
317 B
C#
using Femto.Common.Domain;
|
|
|
|
namespace Femto.Modules.Blog.Application.Commands.CreatePost;
|
|
|
|
public record CreatePostCommand(Guid AuthorId, string Content, IEnumerable<CreatePostMedia> Media)
|
|
: ICommand<Guid>;
|
|
|
|
public record CreatePostMedia(Guid MediaId, Uri Url, string? Type, int Order, int? Width, int? Height);
|