9 lines
255 B
C#
9 lines
255 B
C#
using JetBrains.Annotations;
|
|
|
|
namespace Femto.Api.Controllers.Authors.Dto;
|
|
|
|
[PublicAPI]
|
|
public record GetAuthorPostsResponse(IEnumerable<AuthorPostDto> Posts);
|
|
|
|
[PublicAPI]
|
|
public record AuthorPostDto(Guid PostId, string Content, IEnumerable<Uri> Media);
|