femto-backend/Femto.Modules.Blog/Application/Queries/GetPosts/Dto/PostDto.cs

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