Addressing build warnings

This commit is contained in:
kdeng00
2023-09-29 19:08:34 -04:00
parent 145eea8e92
commit 192208fe2a
5 changed files with 9 additions and 12 deletions
+3 -3
View File
@@ -6,9 +6,9 @@ public class Contact
{
#region Properties
public int ContactID { get; set; }
public string Firstname { get; set; }
public string Lastname { get; set; }
public string PhoneNumber { get; set; }
public string? Firstname { get; set; }
public string? Lastname { get; set; }
public string? PhoneNumber { get; set; }
public DateTime DateCreated { get; set; }
public int UserID { get; set; }
#endregion