11 lines
291 B
C#
11 lines
291 B
C#
namespace Femto.Modules.Blog.Application.Queries.GetPosts.Dto;
|
|
|
|
public record PostDto(
|
|
Guid PostId,
|
|
string Text,
|
|
IList<PostMediaDto> Media,
|
|
DateTimeOffset CreatedAt,
|
|
PostAuthorDto Author,
|
|
IList<PostReactionDto> Reactions,
|
|
IEnumerable<string> PossibleReactions
|
|
);
|