summaryrefslogtreecommitdiff
path: root/Gestor.Model/Gestor.Model.Domain.Relatorios.PrevisaoPagamentoComissao/PrevisaoPagamentoComissao.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Gestor.Model/Gestor.Model.Domain.Relatorios.PrevisaoPagamentoComissao/PrevisaoPagamentoComissao.cs')
-rw-r--r--Gestor.Model/Gestor.Model.Domain.Relatorios.PrevisaoPagamentoComissao/PrevisaoPagamentoComissao.cs10
1 files changed, 10 insertions, 0 deletions
diff --git a/Gestor.Model/Gestor.Model.Domain.Relatorios.PrevisaoPagamentoComissao/PrevisaoPagamentoComissao.cs b/Gestor.Model/Gestor.Model.Domain.Relatorios.PrevisaoPagamentoComissao/PrevisaoPagamentoComissao.cs
new file mode 100644
index 0000000..b618c96
--- /dev/null
+++ b/Gestor.Model/Gestor.Model.Domain.Relatorios.PrevisaoPagamentoComissao/PrevisaoPagamentoComissao.cs
@@ -0,0 +1,10 @@
+using System.Collections.ObjectModel;
+
+namespace Gestor.Model.Domain.Relatorios.PrevisaoPagamentoComissao;
+
+public class PrevisaoPagamentoComissao
+{
+ public string Vendedor { get; set; }
+
+ public ObservableCollection<PrevisaoPagamento> PrevisaoPagamento { get; set; }
+}