namespace ComplianceNFs.Core.Entities { public class ParsedInvoice { public string CnpjComp { get; set; } public string CnpjVend { get; set; } public decimal MontNF { get; set; } public decimal PrecNF { get; set; } public decimal ValorSemImpostos { get; set; } public decimal ValorFinalComImpostos { get; set; } public string RsComp { get; set; } public string RsVend { get; set; } public string NumeroNF { get; set; } public decimal IcmsNF { get; set; } public string UfComp { get; set; } public string UfVend { get; set; } } }