feat: update GetUserWeeklyBalances response structure and mappings
This commit is contained in:
+7
-2
@@ -10,10 +10,15 @@ public record UserWeeklyBalanceDto
|
||||
{
|
||||
public long Id { get; init; }
|
||||
public long UserId { get; init; }
|
||||
public string UserFullName { get; init; } = string.Empty;
|
||||
public long WeekDefinitionId { get; init; }
|
||||
public string WeekDisplayName { get; init; } = string.Empty;
|
||||
public int LeftLegBalances { get; init; }
|
||||
public int RightLegBalances { get; init; }
|
||||
public int LeftLegNewMembers { get; init; }
|
||||
public int LeftLegCarryover { get; init; }
|
||||
public int LeftLegTotal { get; init; }
|
||||
public int RightLegNewMembers { get; init; }
|
||||
public int RightLegCarryover { get; init; }
|
||||
public int RightLegTotal { get; init; }
|
||||
public int TotalBalances { get; init; }
|
||||
public long WeeklyPoolContribution { get; init; }
|
||||
public DateTime? CalculatedAt { get; init; }
|
||||
|
||||
Reference in New Issue
Block a user