6 lines
No EOL
223 B
C#
6 lines
No EOL
223 B
C#
using JetBrains.Annotations;
|
|
|
|
namespace Femto.Api.Controllers.Authors.Dto;
|
|
|
|
[PublicAPI]
|
|
public record AuthorPostDto(Guid PostId, string Content, IEnumerable<Uri> Media, DateTimeOffset CreatedAt, AuthoPostAuthorDto Author ); |