using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BuddyFinance.Integration.Models.Loans { public class ProfileEarningBracket { public double MinAmount { get; set; } public double MaxAmount { get; set; } public double QualifyingAmount { get; set; } } }