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; } }