Response.cs 235 B

123456789
  1. using Application.Features.Api.Feed.Shared;
  2. namespace Application.Features.Api.Feed.GetTimeline;
  3. public sealed class Response
  4. {
  5. public long Total { get; init; }
  6. public required IReadOnlyList<FeedCardRow> List { get; init; }
  7. }