You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
FundingStatusServer/Models/VendorPayment.cs

18 lines
671 B

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; }
}
}