From 993a9b3357b0b80213e71bac58c34b592a9487f0 Mon Sep 17 00:00:00 2001 From: Drew Rautenberg Date: Wed, 15 Jul 2026 19:31:01 -0500 Subject: [PATCH] created customers model --- barkmanAPI/barkDbModel.cs | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/barkmanAPI/barkDbModel.cs b/barkmanAPI/barkDbModel.cs index aac0a20..bdbb7cb 100644 --- a/barkmanAPI/barkDbModel.cs +++ b/barkmanAPI/barkDbModel.cs @@ -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; } } \ No newline at end of file