blob: 8a5ebdb9cc02f16543d1df59004141d7d67fc822 (
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.Pagamento;
public class AgrupamentoPagamentoSintetico
{
[Description("NOME")]
public string Nome { get; set; }
[Tipo("VALOR")]
[Description("REPASSE")]
public decimal Repasse { get; set; }
[Tipo("VALOR")]
[Description("VALOR LÍQUIDO")]
public decimal VlrLiquido { get; set; }
}
|