mirror of
https://github.com/BarkProductions/barkman.git
synced 2026-08-11 11:42:03 +00:00
created customers model
This commit is contained in:
@@ -28,4 +28,16 @@ public class ItemStatus
|
||||
{
|
||||
public string Id { get; set; }
|
||||
public string Name { get; set; }
|
||||
}
|
||||
|
||||
public class Customers
|
||||
{
|
||||
public int Id { get; set; }
|
||||
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? Address { get; set; }
|
||||
public string? BillingTerms { get; set; }
|
||||
public string? Notes { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user