using System; using BuddyFinance.Integration.Models.LoanRequests; namespace BuddyFinance.Integration.Models.Scoring { public class ProfileScore { // public string Status { get; set; } public int CreditBureauScore { get; set; } public string CreditBureauRobotFlag { get; set; } public string CreditBureauRobotFlagColour { get; set; } public int DerivedScore { get; set; } public string DerivedRobotFlag { get; set; } public string DerivedRobotFlagColour { get; set; } public DateTime ScoringDate { get; set; } public string FirstName { get; set; } public string LastName { get; set; } } }