summaryrefslogtreecommitdiff
path: root/Gestor.Model/Gestor.Model.License/Licenca.cs
blob: f14e34407f025ed44997b8f2d96e916c9ec90067 (plain)
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; }
}