using System; using System.ComponentModel; using Gestor.Model.Attributes; using Gestor.Model.Common; namespace Gestor.Model.Domain.Financeiro; public class ExtratoConta { private string _fornecedor; private string _historico; public bool Bold { get; set; } public long IdLancamento { get; set; } public Sinal Sinal { get; set; } [Tipo("DATA?")] [Description("DATA BAIXA")] public DateTime? Baixa { get; set; } [Description("FORNECEDOR")] public string Fornecedor { get { return _fornecedor?.ToUpper(); } set { _fornecedor = value; } } [Description("HISTÓRICO")] public string Historico { get { return _historico?.ToUpper(); } set { _historico = value; } } [Tipo("ENUM")] [Description("TIPO PAGAMENTO")] public TipoPagamento? TipoPagamento { get; set; } [Tipo("VALOR?")] [Description("VALOR")] public decimal? Valor { get; set; } }