using BuddyFinance.Integration.Models.LoanOffers; using BuddyFinance.Integration.Models.Profiles; using BuddyFinance.Integration.Models.Scoring; using System; using System.Collections.Generic; namespace BuddyFinance.Integration.Models.LoanRequests { //[DataContract(IsReference = true)] public class LoanRequestOfferModel { public LoanOfferStatus LoanOfferStatus; public int Id { get; set; } public DateTime RequestDate { get; set; } public string Comments { get; set; } public double Amount { get; set; } public int OfferStausId { get; set; } public Status Status { get; set; } public int LoanOfferId { get; set; } public bool IsActive { get; set; } public bool IOU_Accepted { get; set; } public LoanOfferModel LoanOffer { get; set; } public int LoanRequestId { get; set; } public LoanRequestModel LoanRequest { get; set; } public string Borrower { get; set; } public string Lender { get; set; } public double interest { get; set; } public Profile BorrowerProfile { get; set; } public ProfileScore Score { get; set; } public double InitialPayment { get; set; } public double MonthlyPayment { get; set; } public double TotalPayment { get; set; } public List Fees { get; set; } } }