| 1234567891011121314151617 |
- namespace Application.Features.Api.Member.Follow.GetFollowing;
- public sealed class Response
- {
- public long Total { get; init; }
- public required IReadOnlyList<Row> List { get; init; }
- public sealed class Row
- {
- public required string SID { get; init; }
- public string? Name { get; init; }
- public string? Thumb { get; init; }
- public string? Summary { get; init; }
- public bool IsCreator { get; init; }
- public DateTime FollowedAt { get; init; }
- }
- }
|