Response.cs 471 B

12345678910111213141516
  1. namespace Application.Features.Api.Feed.GetSuggestedFollows;
  2. public sealed class Response
  3. {
  4. public required IReadOnlyList<Row> List { get; init; }
  5. public sealed class Row
  6. {
  7. public required string SID { get; init; }
  8. public string? Name { get; init; }
  9. public string? Thumb { get; init; }
  10. public string? Summary { get; init; }
  11. public bool IsCreator { get; init; }
  12. public long FollowerCount { get; init; }
  13. }
  14. }