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