using System; using System.Runtime.CompilerServices; namespace Gestor.Model.API { public class Owner { public string AreaCode { get; set; } public Gestor.Model.API.Customer Customer { get; set; } public long Id { get; set; } public string Mail { get; set; } public string Name { get; set; } public string Phone { get; set; } public long Type { get; set; } public Owner() { } } }