using FindAndDrive.Domain.Models.Enums; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace FindAndDrive.Domain.Models.DTO { public class PredictionRequest { public decimal? CalcExpenses { get; set; } public decimal? NetIncome { get; set; } public decimal? AdditionalIncome { get; set; } public int? CreditScore { get; set; } public string? ScoreIndicator { get; set; } public string? Reason1 { get; set; } } public class PredictionResponse { public ChancesOfApproval? Prediction { get; set; } public string? Reason { get; set; } public string? ReasonVerbiage { get; set; } } public class PredictionVariablesDto { public decimal Dti { get; set; } public decimal DtiInt { get; set; } public decimal Pti { get; set; } public decimal PtiRatio { get; set; } public decimal PtiInt { get; set; } } }