Skip to content

Commit

Permalink
fix: nullable fiends in PlotUpdate
Browse files Browse the repository at this point in the history
  • Loading branch information
zhudotexe authored Jul 11, 2022
1 parent ba4e4c7 commit 70b6f95
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Paissa/Schema.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,10 @@ public class PlotUpdate {
public uint price { get; set; }
public float last_updated_time { get; set; }
public PurchaseSystem purchase_system { get; set; }
public uint lotto_entries { get; set; }
public AvailabilityType lotto_phase { get; set; }
public uint? lotto_entries { get; set; }
public AvailabilityType? lotto_phase { get; set; }
public AvailabilityType? previous_lotto_phase { get; set; }
public uint lotto_phase_until { get; set; }
public uint? lotto_phase_until { get; set; }
}

public class SoldPlotDetail {
Expand Down

0 comments on commit 70b6f95

Please sign in to comment.