namespace CMSMicroservice.Application.CommissionCQ.Queries.GetWeeklyCommissionPool; /// /// DTO برای استخر کمیسیون هفتگی /// public class WeeklyCommissionPoolDto { public long Id { get; set; } public long WeekDefinitionId { get; set; } public string WeekDisplayName { 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; } public long PackageId { get; set; } public string PackageTitle { get; set; } = string.Empty; }