femto-backend/Femto.Api/Controllers/Posts/Dto/PostDto.cs
2025-05-27 00:28:16 +02:00

13 lines
No EOL
284 B
C#

using JetBrains.Annotations;
namespace Femto.Api.Controllers.Posts.Dto;
[PublicAPI]
public record PostDto(
PostAuthorDto Author,
Guid PostId,
string Content,
IEnumerable<PostMediaDto> Media,
IEnumerable<PostReactionDto> Reactions,
DateTimeOffset CreatedAt
);