namespace Application.Features.Api.Forum.PostCheer.Get; public sealed class Response { /// 누적 응원 금액 합계 (총액 기준) public long TotalAmount { get; init; } /// 응원 건수 public int Count { get; init; } /// 최근 응원 목록 public IReadOnlyList Recent { get; init; } = []; public sealed class Item { public int ID { get; init; } public int FromMemberID { get; init; } public string? FromNickname { get; init; } public int Amount { get; init; } public string? Message { get; init; } public DateTime CreatedAt { get; init; } } }