using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; /* Created: 30 Aug 17 * Author: Mxo * */ namespace BuddyFinance.Integration.Models.Loans { public class GetLoansRequest { public int Id { get; set; } public string RequestedDate { get; set; } public int UserId { get; set; } public double Amount { get; set; } public int Term { get; set; } public string Status { get; set; } public string TermType { get; set; } public System.DateTime FirstPaymentDate { get; set; } } }