13 lines
No EOL
284 B
C#
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
|
|
); |