femto-backend/Femto.Modules.Blog/Application/Queries/GetPosts/Dto/PostDto.cs
2025-08-10 21:21:40 +02:00

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
);