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