diff options
| author | ivarlovlie <git@ivarlovlie.no> | 2022-10-31 18:16:38 +0100 |
|---|---|---|
| committer | ivarlovlie <git@ivarlovlie.no> | 2022-10-31 18:16:38 +0100 |
| commit | f0cea15a4f85b47bf13b6db392f4ff97449d53c2 (patch) | |
| tree | 98c0b408394970eb930e53968f153e66043a3044 /code/api/src/Data/Database/Customer | |
| parent | 0725e4f7cf4c6f723264b6d461b91c660d144cb7 (diff) | |
| download | greatoffice-f0cea15a4f85b47bf13b6db392f4ff97449d53c2.tar.xz greatoffice-f0cea15a4f85b47bf13b6db392f4ff97449d53c2.zip | |
feat: More models and schema changes
Diffstat (limited to 'code/api/src/Data/Database/Customer')
| -rw-r--r-- | code/api/src/Data/Database/Customer/Customer.cs | 4 |
1 files changed, 2 insertions, 2 deletions
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<CustomerGroup> Groups { get; set; } public ICollection<CustomerContact> Contacts { get; set; } |
