summaryrefslogtreecommitdiff
path: root/Codemerx/Gestor.Model/Model.Domain.BI/AtalhosCalculo.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Codemerx/Gestor.Model/Model.Domain.BI/AtalhosCalculo.cs')
-rw-r--r--Codemerx/Gestor.Model/Model.Domain.BI/AtalhosCalculo.cs28
1 files changed, 28 insertions, 0 deletions
diff --git a/Codemerx/Gestor.Model/Model.Domain.BI/AtalhosCalculo.cs b/Codemerx/Gestor.Model/Model.Domain.BI/AtalhosCalculo.cs
new file mode 100644
index 0000000..c1a0ec4
--- /dev/null
+++ b/Codemerx/Gestor.Model/Model.Domain.BI/AtalhosCalculo.cs
@@ -0,0 +1,28 @@
+using Gestor.Model.Attributes;
+using System;
+using System.ComponentModel;
+using System.Runtime.CompilerServices;
+
+namespace Gestor.Model.Domain.BI
+{
+ public class AtalhosCalculo
+ {
+ public string Agrupamento
+ {
+ get;
+ set;
+ }
+
+ [Description("COTAÇÕES")]
+ [Tipo("QUANTIDADE")]
+ public int Cotacoes
+ {
+ get;
+ set;
+ }
+
+ public AtalhosCalculo()
+ {
+ }
+ }
+} \ No newline at end of file