Response.cs 1.1 KB

123456789101112131415161718192021222324252627282930313233
  1. namespace Application.Features.Api.Member.Profile;
  2. public sealed class Response
  3. {
  4. public int MemberID { get; init; }
  5. public required string MemberSID { get; init; }
  6. public string? Name { get; init; }
  7. public string? Thumb { get; init; }
  8. public string? BannerUrl { get; init; }
  9. public string? Summary { get; init; }
  10. public string? Intro { get; init; }
  11. public bool IsCreator { get; init; }
  12. public bool IsAdmin { get; init; }
  13. public bool IsAuthCertified { get; init; }
  14. public DateTime JoinedAt { get; init; }
  15. public DateTime? LastLoginAt { get; init; }
  16. public string? ChannelSID { get; init; }
  17. public string? ChannelHandle { get; init; }
  18. public long FollowerCount { get; init; }
  19. public long FollowingCount { get; init; }
  20. public long PostCount { get; init; }
  21. public long CommentCount { get; init; }
  22. public long FeedPostCount { get; init; }
  23. public long AttendanceCount { get; init; }
  24. public int ConsecutiveDays { get; init; }
  25. public long Exp { get; init; }
  26. public long LikeReceivedCount { get; init; }
  27. public bool IsFollowing { get; init; }
  28. public bool IsSelf { get; init; }
  29. }