-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathClient.cs
More file actions
23 lines (22 loc) · 766 Bytes
/
Copy pathClient.cs
File metadata and controls
23 lines (22 loc) · 766 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
namespace SalesAPI;
/// <summary>
/// Represents a client/customer
/// Maps to Clients table in database
/// </summary>
public class Client
{
public int Id { get; set; }
public string? SearchTerm { get; set; }
public string CompanyName { get; set; } = "";
public string? SoldToCode { get; set; }
public string? AccountId { get; set; }
public string? PhoneNumber { get; set; }
public string? Email { get; set; }
public string? SecondaryEmail { get; set; }
public string? Address { get; set; }
public string? VATNumber { get; set; }
public string? AccountTerms { get; set; }
public bool IsActive { get; set; } = true;
public string CreatedDate { get; set; } = "";
public string LastUpdated { get; set; } = "";
}