12 lines
No EOL
326 B
C#
12 lines
No EOL
326 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,
|
|
IList<PostCommentDto> Comments
|
|
); |