//------------------------------------------------------------------------------
//
// This code was generated from a template.
//
// Manual changes to this file may cause unexpected behavior in your application.
// Manual changes to this file will be overwritten if the code is regenerated.
//
//------------------------------------------------------------------------------
namespace BuddyFinance.Model
{
using System;
using System.Collections.Generic;
public partial class ProfileCreditRatingScore
{
public int Id { get; set; }
public int ProfileId { get; set; }
public Nullable BorrowerId { get; set; }
public Nullable LoanRequestOfferId { get; set; }
public int CreditBureauScore { get; set; }
public int DerivedScore { get; set; }
public int CreditBureauRobotScoreId { get; set; }
public int DerivedRobotScoreId { get; set; }
public System.DateTime ScoreDate { get; set; }
public string Firstname { get; set; }
public string Lastname { get; set; }
public virtual RobotScore CreditBureauRobotScore { get; set; }
public virtual RobotScore DerivedScoreRobotScore { get; set; }
public virtual LoanRequestOffer LoanRequestOffer { get; set; }
public virtual Profile Profile { get; set; }
public virtual Profile Profile1 { get; set; }
}
}