Skip to content

Commit b74ff66

Browse files
authored
Merge pull request #910 from bcgov/bug/DSS-1153
DSS-1153 Internal Server Error - View Listing Details
2 parents 13f4416 + c2d73c0 commit b74ff66

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

server/StrDss.Data/Entities/DssPhysicalAddress.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -137,16 +137,16 @@ public partial class DssPhysicalAddress
137137
/// <summary>
138138
/// The unit number of the rental property as provided by the Registration Validation upload
139139
/// </summary>
140-
public string RegRentalUnitNo { get; set; }
140+
public string? RegRentalUnitNo { get; set; }
141141
/// <summary>
142142
/// The street number of the rental property as provided by the Registration Validation upload
143143
/// </summary>
144-
public string RegRentalStreetNo { get; set; }
144+
public string? RegRentalStreetNo { get; set; }
145145

146146
/// <summary>
147147
/// The postal code of the rental property as provided by the Registration Validation upload
148148
/// </summary>
149-
public string RegRentalPostalCode { get; set; }
149+
public string? RegRentalPostalCode { get; set; }
150150

151151
public virtual DssOrganization? ContainingOrganization { get; set; }
152152

0 commit comments

Comments
 (0)