//------------------------------------------------------------------------------ // // 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 LoanRequestOffer { [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")] public LoanRequestOffer() { this.ProfileCreditRatingScores = new HashSet(); } public int Id { get; set; } public System.DateTime RequestDate { get; set; } public string Comments { get; set; } public int OfferStausId { get; set; } public int LoanOfferId { get; set; } public int LoanRequestId { get; set; } public bool IsActive { get; set; } public bool IOU_Accepted { get; set; } public virtual OfferStatus OfferStatus { get; set; } [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")] public virtual ICollection ProfileCreditRatingScores { get; set; } public virtual LoanOffer LoanOffer { get; set; } public virtual LoanRequest LoanRequest { get; set; } } }