Skip to content

Commit

Permalink
Merge pull request #221 from lootlocker/fix/DateTime-acquisition_date…
Browse files Browse the repository at this point in the history
…-should-be-nullable

fix(runtime/game): DateTime acquisition_date is now nullable#19
  • Loading branch information
mickeygeecom committed Jan 17, 2024
2 parents 1dfc017 + 856606c commit c993640
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Runtime/Game/Requests/PlayerRequest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ public class LootLockerInventory
public int? variation_id { get; set; }
public string rental_option_id { get; set; }
public string acquisition_source { get; set; }
public DateTime acquisition_date { get; set; }
public DateTime? acquisition_date { get; set; }
public LootLockerCommonAsset asset { get; set; }
public LootLockerRental rental { get; set; }

Expand Down

0 comments on commit c993640

Please sign in to comment.