using Gestor.Model.Attributes; using System; using System.ComponentModel; using System.Runtime.CompilerServices; namespace Gestor.Model.Domain.Relatorios.NotaFiscal { public class NotaFiscalRelatorio { [Description("VALOR BRUTO")] [Tipo("VALOR")] public decimal Bruto { get; set; } [Description("CNPJ")] public string Cnpj { get; set; } [Description("DATA")] [Tipo("DATA?")] public DateTime? Data { get; set; } [Description("ESTIPULANTE")] public string Estipulante { get; set; } [Description("EXTRATO")] public string Extrato { get; set; } [Tipo("INVALID")] public long Id { get; set; } [Description("IR")] [Tipo("VALOR")] public decimal Ir { get; set; } [Description("ISS")] [Tipo("VALOR")] public decimal Iss { get; set; } [Description("VALOR LÍQUIDO")] [Tipo("VALOR")] public decimal Liquido { get; set; } [Description("SEGURADORA")] public string Seguradora { get; set; } [Tipo("INVALID")] public bool Selecionado { get; set; } public NotaFiscalRelatorio() { } } }