13 lines
518 B
C#
13 lines
518 B
C#
namespace CarCareTracker.Models
|
|
{
|
|
public class Translations
|
|
{
|
|
public List<string> Africa { get; set; } = new List<string>();
|
|
public List<string> Asia { get; set; } = new List<string>();
|
|
public List<string> Europe { get; set; } = new List<string>();
|
|
public List<string> NorthAmerica { get; set; } = new List<string>();
|
|
public List<string> SouthAmerica { get; set; } = new List<string>();
|
|
public List<string> Oceania { get; set; } = new List<string>();
|
|
}
|
|
}
|