Skip to content

Commit

Permalink
Changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Phalanx123 committed Nov 16, 2023
1 parent a220cf6 commit 32f1ca9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions SWMS/Model/SimpliProject.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public class SimpliProject
/// Project Address Line 1
/// </summary>
[JsonPropertyName("address1")]
public required string Address1 { get; set; }
public string? Address1 { get; set; }

/// <summary>
/// Project Address Line 2
Expand All @@ -37,7 +37,7 @@ public class SimpliProject
/// </summary>

[JsonPropertyName("suburb")]
public required string Suburb { get; set; }
public string? Suburb { get; set; }

/// <summary>
/// Project State
Expand All @@ -54,7 +54,7 @@ public class SimpliProject

[JsonPropertyName("country")]
[JsonConverter(typeof(JsonStringEnumConverter))]
public required Country Country { get; set; }
public Country? Country { get; set; }

/// <summary>
/// Date/Time project was created
Expand Down

0 comments on commit 32f1ca9

Please sign in to comment.