namespace PaymentServer.Models { public class VendorPayment { public string contractNumber { get; set; } public string bachNumber { get; set; } public string vendorId { get; set; } public string pordNumber { get; set; } public decimal purchaseAmount { get; set; } public DateTime docDate { get; set; } public DateTime dexRowTimestamp { get; set; } public int? customerKey { get; set; } public decimal? totalListPrice { get; set; } public decimal? equipmentCost { get; set; } public string? salesRep { get; set; } public string? salesRepEmail { get; set; } } }