namespace CarCareTracker.Models { public class Translations { public List Africa { get; set; } = new List(); public List Asia { get; set; } = new List(); public List Europe { get; set; } = new List(); public List NorthAmerica { get; set; } = new List(); public List SouthAmerica { get; set; } = new List(); public List Oceania { get; set; } = new List(); } }