using System; using System.Runtime.CompilerServices; namespace Gestor.Model.License { public class Licenca { public bool AcessoLiberado { get; set; } public DateTime Liberacao { get; set; } public Gestor.Model.License.Produto Produto { get; set; } public int Quantidade { get; set; } public int Status { get; set; } public Licenca() { } } }