| 12345678910111213141516171819202122232425 |
- namespace Application.Features.Api.Feed.GetReplies;
- public sealed class Response
- {
- public long Total { get; init; }
- public required IReadOnlyList<Row> List { get; init; }
- public sealed class Row
- {
- public int ID { get; init; }
- public int? ParentID { get; init; }
- public string? ParentAuthorSID { get; init; }
- public string? ParentAuthorName { get; init; }
- public required string Content { get; init; }
- public string? AuthorSID { get; init; }
- public string? AuthorName { get; init; }
- public string? AuthorThumb { get; init; }
- public bool IsCreator { get; init; }
- public int Likes { get; init; }
- public bool HasLike { get; init; }
- public bool IsOwner { get; init; }
- public bool IsDeleted { get; init; }
- public DateTime CreatedAt { get; init; }
- }
- }
|