using FindAndDrive.Domain.Models.Enums; using System.ComponentModel.DataAnnotations.Schema; namespace FindAndDrive.Domain.Models.Entities { public class ApplicantPredicition { [DatabaseGenerated(DatabaseGeneratedOption.Identity)] public Guid ApplicantPredictionId { get; set; } public Guid ApplicantId { get; set; } public ChancesOfApproval ChancesOfApproval { get; set; } public decimal EstimatedApprovalAmount { get; set; } public decimal EstimatedFinanceSpend { get; set; } public decimal EstimatedInsuranceSpend { get; set; } public string ImprovementSuggestion { get; set; } public string ImprovementSuggestionFull { get; set; } //Relationships with other entities public virtual Applicant Applicant { get; set; } } }