Response.cs 511 B

1234567891011121314151617
  1. namespace Application.Features.Api.Member.Follow.GetFollowing;
  2. public sealed class Response
  3. {
  4. public long Total { get; init; }
  5. public required IReadOnlyList<Row> List { get; init; }
  6. public sealed class Row
  7. {
  8. public required string SID { get; init; }
  9. public string? Name { get; init; }
  10. public string? Thumb { get; init; }
  11. public string? Summary { get; init; }
  12. public bool IsCreator { get; init; }
  13. public DateTime FollowedAt { get; init; }
  14. }
  15. }