Response.cs 338 B

1234567891011
  1. using Application.Features.Api.Feed.Shared;
  2. namespace Application.Features.Api.Feed.GetByUser;
  3. public sealed class Response
  4. {
  5. public required string AuthorSID { get; init; }
  6. public required string AuthorName { get; init; }
  7. public long Total { get; init; }
  8. public required IReadOnlyList<FeedCardRow> List { get; init; }
  9. }