femto-backend/Femto.Api/Controllers/Authors/Dto/AuthorPostDto.cs
2025-05-04 23:22:30 +02:00

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 );