namespace CarCareTracker.Models { public class Sponsors { public List LifeTime { get; set; } = new List(); public List Bronze { get; set; } = new List(); public List Silver { get; set; } = new List(); public List Gold { get; set; } = new List(); } }