12 lines
No EOL
240 B
C#
12 lines
No EOL
240 B
C#
using JetBrains.Annotations;
|
|
|
|
namespace Femto.Api.Controllers.Posts.Dto;
|
|
|
|
[PublicAPI]
|
|
public record PostDto(
|
|
PostAuthorDto Author,
|
|
Guid PostId,
|
|
string Content,
|
|
IEnumerable<PostMediaDto> Media,
|
|
DateTimeOffset CreatedAt
|
|
); |