blob: e747c2ef047084b5c11baf97891f1f01be177b08 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
using System.ComponentModel;
using Gestor.Model.Attributes;
namespace Gestor.Model.Domain.Relatorios.PrevisaoPagamentoComissao;
public class AgrupamentoSintetico
{
[Description("NOME")]
public string Nome { get; set; }
[Tipo("VALOR")]
[Description("PREVISÃO DE PAGAMENTO")]
public decimal PrevisaoPagamento { get; set; }
[Tipo("VALOR")]
[Description("PREVISÃO LÍQUIDA")]
public decimal PrevisaoLiquida { get; set; }
}
|