using System; using System.Collections.ObjectModel; using System.Runtime.CompilerServices; namespace Gestor.Model.Domain.Relatorios.PrevisaoPagamentoComissao { public class PrevisaoPagamentoComissao { public ObservableCollection PrevisaoPagamento { get; set; } public string Vendedor { get; set; } public PrevisaoPagamentoComissao() { } } }