made phone optional in customers model

This commit is contained in:
2026-07-15 20:26:25 -05:00
parent 92788701d4
commit 3c707744fc
6 changed files with 403 additions and 2 deletions
+1 -1
View File
@@ -37,7 +37,7 @@ public class Customers
public required string Name { get; set; }
public string? Company { get; set; }
public required string Email { get; set; }
public required string PhoneNumber { get; set; }
public string? PhoneNumber { get; set; }
public string? Address { get; set; }
public string? BillingTerms { get; set; }
public string? Notes { get; set; }