diff options
Diffstat (limited to 'Codemerx/Gestor.Model/Model.License/Licenca.cs')
| -rw-r--r-- | Codemerx/Gestor.Model/Model.License/Licenca.cs | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/Codemerx/Gestor.Model/Model.License/Licenca.cs b/Codemerx/Gestor.Model/Model.License/Licenca.cs new file mode 100644 index 0000000..dfece96 --- /dev/null +++ b/Codemerx/Gestor.Model/Model.License/Licenca.cs @@ -0,0 +1,42 @@ +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()
+ {
+ }
+ }
+}
\ No newline at end of file |