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.
92 lines
4.2 KiB
92 lines
4.2 KiB
namespace Models
|
|
{
|
|
public class PortfolioData
|
|
{
|
|
public int PortfolioDataID { get; set; }
|
|
public int PortfolioID { get; set; }
|
|
public string ContractNumber { get; set; }
|
|
public string CustomerName { get; set; }
|
|
public string CustomerPhoneNumber { get; set; }
|
|
public string CustomerTaxID { get; set; }
|
|
public string CustomerPhysicalAddress1 { get; set; }
|
|
public string CustomerPhysicalAddress2 { get; set; }
|
|
public string CustomerPhysicalCity { get; set; }
|
|
public string CustomerPhysicalState { get; set; }
|
|
public string CustomerPhysicalZip { get; set; }
|
|
public DateTime DateBooked { get; set; }
|
|
public byte Term { get; set; }
|
|
public decimal PaymentAmount { get; set; }
|
|
public decimal FinancedAmount { get; set; }
|
|
public decimal Receivablebalance { get; set; }
|
|
public string AssetDescription { get; set; }
|
|
public string SerialNumberVIN { get; set; }
|
|
public string BusinessType { get; set; }
|
|
public string PGName { get; set; }
|
|
public string PGAddress1 { get; set; }
|
|
public string PGAddress2 { get; set; }
|
|
public string PGCity { get; set; }
|
|
public string PGState { get; set; }
|
|
public string PGZip { get; set; }
|
|
public string PGSSN { get; set; }
|
|
public DateTime DOB { get; set; }
|
|
public short PG1FICO { get; set; }
|
|
public string ScheduleNumber { get; set; }
|
|
public string CustomerNumber { get; set; }
|
|
public string CustomerBillingStreet { get; set; }
|
|
public string CustomerBillingCity { get; set; }
|
|
public string CustomerBillingState { get; set; }
|
|
public string CustomerBillingZip { get; set; }
|
|
public string DirectInDirectChannel { get; set; }
|
|
public short DaysDelinquent { get; set; }
|
|
public short Times30DaysDelinq { get; set; }
|
|
public short Times60DaysDelinq { get; set; }
|
|
public short Times90PlusDaysDelinq { get; set; }
|
|
public string DBAName { get; set; }
|
|
public string AssetEquipmentAddress1 { get; set; }
|
|
public string AssetEquipmentAddress2 { get; set; }
|
|
public string AssetEquipmentCity { get; set; }
|
|
public string AssetEquipmentState { get; set; }
|
|
public string AssetEquipmentZip { get; set; }
|
|
public string Assumption { get; set; }
|
|
public string Resturcture { get; set; }
|
|
public string Bankruptcy { get; set; }
|
|
public string ResidualTypeTo { get; set; }
|
|
public string CSC { get; set; }
|
|
public DateTime CommencementDate { get; set; }
|
|
public DateTime MaturityDate { get; set; }
|
|
public DateTime PaidThruDate { get; set; }
|
|
public DateTime NextDueDate { get; set; }
|
|
public DateTime LastPaymentDate { get; set; }
|
|
public DateTime Dateincomesuspended { get; set; }
|
|
public DateTime TerminationDate { get; set; }
|
|
public short RemainingMonthsCash { get; set; }
|
|
public string PaymentType { get; set; }
|
|
public float ResidualAmount { get; set; }
|
|
public decimal SecurityDeposit { get; set; }
|
|
public short SICCode { get; set; }
|
|
public string AssetType { get; set; }
|
|
public short YearsinBusiness { get; set; }
|
|
public string Vendorname { get; set; }
|
|
public string PG2Name { get; set; }
|
|
public string PG2Address1 { get; set; }
|
|
public string PG2Address2 { get; set; }
|
|
public string PG2City { get; set; }
|
|
public string PG2State { get; set; }
|
|
public string PG2Zip { get; set; }
|
|
public string PG2SSN { get; set; }
|
|
public DateTime PG2DOB { get; set; }
|
|
public short PG2FICO { get; set; }
|
|
public string CGName { get; set; }
|
|
public string CGAddress1 { get; set; }
|
|
public string CGAddress2 { get; set; }
|
|
public string CGCity { get; set; }
|
|
public string CGState { get; set; }
|
|
public string CGZip { get; set; }
|
|
public DateTime NextDue { get; set; }
|
|
public short NumDays { get; set; }
|
|
public string PerDiem { get; set; }
|
|
public decimal TotalNetFunding { get; set; }
|
|
public decimal NPV { get; set; }
|
|
public string AdditionalData { get; set; }
|
|
}
|
|
} |