femto-backend/Femto.Api/Controllers/Authors/Dto/AuthorPostDto.cs
2025-05-04 00:57:27 +02:00

6 lines
No EOL
217 B
C#

using JetBrains.Annotations;
namespace Femto.Api.Controllers.Authors.Dto;
[PublicAPI]
public record AuthorPostDto(Guid PostId, string Content, IEnumerable<Uri> Media, DateTime CreatedAt, AuthoPostAuthorDto Author );