using System.ComponentModel; using Gestor.Model.Attributes; namespace Gestor.Model.Domain.Relatorios; public class SinteticoFinanceiro { [Description("AGRUPAMENTO")] public string Agrupamento { get; set; } [Tipo("VALOR")] [Description("VALOR")] public decimal? Valor { get; set; } [Tipo("VALOR")] [Description("VALOR PAGO")] public decimal? ValorPago { get; set; } }