14 lines
486 B
C#
14 lines
486 B
C#
namespace BackOffice.BFF.Application.CommissionCQ.Queries.GetWeeklyPool;
|
|
|
|
public class GetWeeklyPoolResponseDto
|
|
{
|
|
public long Id { get; set; }
|
|
public string WeekNumber { get; set; } = string.Empty;
|
|
public long TotalPoolAmount { get; set; }
|
|
public long TotalBalances { get; set; }
|
|
public decimal ValuePerBalance { get; set; }
|
|
public bool IsCalculated { get; set; }
|
|
public DateTime? CalculatedAt { get; set; }
|
|
public DateTimeOffset Created { get; set; }
|
|
}
|