From f0cea15a4f85b47bf13b6db392f4ff97449d53c2 Mon Sep 17 00:00:00 2001 From: ivarlovlie Date: Tue, 1 Nov 2022 00:16:38 +0700 Subject: feat: More models and schema changes --- code/api/src/Data/Database/Customer/Customer.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'code/api/src/Data/Database/Customer') diff --git a/code/api/src/Data/Database/Customer/Customer.cs b/code/api/src/Data/Database/Customer/Customer.cs index f9953da..8e153c6 100644 --- a/code/api/src/Data/Database/Customer/Customer.cs +++ b/code/api/src/Data/Database/Customer/Customer.cs @@ -4,7 +4,7 @@ public class Customer : BaseWithOwner { public Customer() { } public Customer(LoggedInUserModel loggedInUserModel) : base(loggedInUserModel) { } - + public string CustomerNumber { get; set; } public string Name { get; set; } public string Description { get; set; } @@ -20,7 +20,7 @@ public class Customer : BaseWithOwner public string DefaultReference { get; set; } public string Website { get; set; } public string Currency { get; set; } - + public Guid? OwnerId { get; set; } public User Owner { get; set; } public ICollection Groups { get; set; } public ICollection Contacts { get; set; } -- cgit v1.3