using BuddyFinance.Integration.Models.LoanOffers; using BuddyFinance.Integration.Models.LoanRequests; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BuddyFinance.Integration.Models.Profiles { //For Dashboard public class ProfileSummary { //Borrower public List LoanRequests { get; set; } = new List(); public List Loans { get; set; } = new List(); //Lender public List LoanOffers { get; set; } public double AvailableFunds { get; set; } public double TotalCashDeposit { get; set; } public double TotalCashWithdrawal { get; set; } } public class ProfileSummaryResult : BaseResult { public ProfileSummaryResult() { Result = new ProfileSummary(); } } }