femto-backend/Femto.Modules.Blog/Application/Queries/GetPosts/Dto/PostDto.cs
2025-05-27 00:28:16 +02:00

9 lines
No EOL
246 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);