using System.ComponentModel; using Gestor.Model.Attributes; namespace Gestor.Model.Domain.Financeiro.Relatorios; public class DadosFechamento { private string _planos; [Description("PLANO DE CONTAS")] public string Planos { get { return _planos?.ToUpper(); } set { _planos = value; } } [Tipo("VALOR")] [Description("TOTAL CRÉDITO")] public decimal Credito { get; set; } [Tipo("VALOR")] [Description("TOTAL DÉBITO")] public decimal Debito { get; set; } [Tipo("PERCENTUAL")] [Description("% CRÉDITO")] public decimal PercentualCredito { get; set; } [Tipo("PERCENTUAL")] [Description("% DÉBITO")] public decimal PercentualDebito { get; set; } [Tipo("VALOR")] [Description("TOTAL CRÉDITO - TOTAL DÉBITO")] public decimal Soma { get; set; } [Tipo("PERCENTUAL")] [Description("% TOTAL DE CRÉDITO - % TOTAL DE DÉBITO")] public decimal SomaPercentual { get; set; } }