1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
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; } }