using Gestor.Model.Attributes; using System; using System.ComponentModel; using System.Runtime.CompilerServices; namespace Gestor.Model.Domain.Relatorios.Pagamento { public class AgrupamentoPagamentoSintetico { [Description("NOME")] public string Nome { get; set; } [Description("REPASSE")] [Tipo("VALOR")] public decimal Repasse { get; set; } [Description("VALOR LÍQUIDO")] [Tipo("VALOR")] public decimal VlrLiquido { get; set; } public AgrupamentoPagamentoSintetico() { } } }