Skip to content

Commit e2e4e3a

Browse files
Mikkel Sørensenkirre-bylund
authored andcommitted
Made rental and variation asset ids nullable
1 parent c470f7b commit e2e4e3a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Runtime/Game/Requests/LeaderboardDetailsRequest.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -202,11 +202,11 @@ public class LootLockerLeaderboardRewardAsset
202202
/// <summary>
203203
/// The Asset variation ID, will be null if its not a variation.
204204
/// </summary>
205-
public int asset_variation_id { get; set; }
205+
public int? asset_variation_id { get; set; }
206206
/// <summary>
207207
/// The Asset rental option ID, will be null if its not a rental.
208208
/// </summary>
209-
public int asset_rental_option_id { get; set; }
209+
public int? asset_rental_option_id { get; set; }
210210
/// <summary>
211211
/// The ID of the Asset.
212212
/// </summary>

0 commit comments

Comments
 (0)