mirror of https://github.com/Squidex/squidex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.1 KiB
53 lines
1.1 KiB
// ==========================================================================
|
|
// Squidex Headless CMS
|
|
// ==========================================================================
|
|
// Copyright (c) Squidex UG (haftungsbeschraenkt)
|
|
// All rights reserved. Licensed under the MIT license.
|
|
// ==========================================================================
|
|
|
|
#pragma warning disable MA0048 // File name must match type name
|
|
|
|
namespace TestSuite.Model;
|
|
|
|
public sealed class Country
|
|
{
|
|
public CountryData Data { get; set; }
|
|
}
|
|
|
|
public sealed class CountryData
|
|
{
|
|
public string Name { get; set; }
|
|
|
|
public List<State> States { get; set; }
|
|
}
|
|
|
|
public sealed class State
|
|
{
|
|
public StateData Data { get; set; }
|
|
}
|
|
|
|
public sealed class StateData
|
|
{
|
|
public string Name { get; set; }
|
|
|
|
public List<City> Cities { get; set; }
|
|
}
|
|
|
|
public sealed class City
|
|
{
|
|
public CityData Data { get; set; }
|
|
}
|
|
|
|
public sealed class CityData
|
|
{
|
|
public string Name { get; set; }
|
|
|
|
public LocationData TopLocation { get; set; }
|
|
|
|
public List<LocationData> Locations { get; set; }
|
|
}
|
|
|
|
public sealed class LocationData
|
|
{
|
|
public string Name { get; set; }
|
|
}
|
|
|