using System; namespace ComplianceNFs.Core.Entities { public class BuyingRecord { public int CodTE { get; set; } public string CodSmartUnidade { get; set; } public int Mes { get; set; } // month as integer public int Ano { get; set; } // year as integer public string CnpjComp { get; set; } public string CnpjVend { get; set; } public decimal MontLO { get; set; } // expected volume public decimal PrecLO { get; set; } // expected unit price // … other client fields omitted } }