summaryrefslogtreecommitdiff
path: root/Gestor.Model/Gestor.Model.Domain.Relatorios.PrevisaoPagamentoComissao/PrevisaoPagamentoComissao.cs
blob: b618c968f47fe5ee7dc03f7f4e9b643becfab9c3 (plain)
1
2
3
4
5
6
7
8
9
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; }
}