2025-11-30 23:39:31 +03:30
|
|
|
namespace BackOffice.BFF.Application.CommissionCQ.Queries.GetWeeklyPool;
|
|
|
|
|
|
|
|
|
|
public class GetWeeklyPoolResponseDto
|
|
|
|
|
{
|
|
|
|
|
public long Id { get; set; }
|
|
|
|
|
public string WeekNumber { get; set; } = string.Empty;
|
2025-12-12 05:57:32 +03:30
|
|
|
public long TotalPoolAmount { get; set; }
|
|
|
|
|
public long TotalBalances { get; set; }
|
|
|
|
|
public decimal ValuePerBalance { get; set; }
|
2025-11-30 23:39:31 +03:30
|
|
|
public bool IsCalculated { get; set; }
|
|
|
|
|
public DateTime? CalculatedAt { get; set; }
|
2025-12-12 05:57:32 +03:30
|
|
|
public DateTimeOffset Created { get; set; }
|
2025-11-30 23:39:31 +03:30
|
|
|
}
|