Skip to content

Commit 179e978

Browse files
Erik Bylundkirre-bylund
authored andcommitted
Add currencies to progression rewards
1 parent 8ea35e9 commit 179e978

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

Runtime/Game/Requests/ProgressionsRequest.cs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -159,11 +159,19 @@ public class LootLockerProgressionResetReward
159159
public string progression_name { get; set; }
160160
}
161161

162+
public class LootLockerCurrencyReward
163+
{
164+
public string currency_name { get; set; }
165+
public string currency_code { get; set; }
166+
public string amount { get; set; }
167+
}
168+
162169
public class LootLockerRewards
163170
{
164171
public List<LootLockerProgressionPointsReward> progression_points_rewards { get; set; }
165172
public List<LootLockerProgressionResetReward> progression_reset_rewards { get; set; }
166173
public List<LootLockerAssetReward> asset_rewards { get; set; }
174+
public List<LootLockerCurrencyReward> currency_rewards { get; set; }
167175
}
168176

169177
public class LootLockerPaginatedProgressionTiersResponse : LootLockerResponse

0 commit comments

Comments
 (0)