aboutsummaryrefslogtreecommitdiffstats
path: root/code/api/src/Models/Database/Customer/CustomerContact.cs
blob: 4447412ce214bc579305762e1b78316df96b090d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
namespace IOL.GreatOffice.Api.Models.Database;

public class CustomerContact : BaseWithOwner
{
	public Customer Customer { get; set; }
	public string FirstName { get; set; }
	public string LastName { get; set; }
	public string Email { get; set; }
	public string Phone { get; set; }
	public string WorkTitle { get; set; }
	public string Note { get; set; }
}