summaryrefslogtreecommitdiff
path: root/Gestor.Model/Gestor.Model.API/Owner.cs
blob: c0c0a5539d7e9e3d8b5e0ffb8fb983151fa8ef59 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
namespace Gestor.Model.API;

public class Owner
{
	public long Id { get; set; }

	public Customer Customer { get; set; }

	public long Type { get; set; }

	public string Name { get; set; }

	public string AreaCode { get; set; }

	public string Phone { get; set; }

	public string Mail { get; set; }
}