|
| 1 | +namespace World.Net.Countries |
| 2 | +{ |
| 3 | + internal sealed class CoteDIvoire : ICountry |
| 4 | + { |
| 5 | + ///<inheritdoc/> |
| 6 | + public CountryIdentifier Id => CountryIdentifier.CoteDIvoire; |
| 7 | + |
| 8 | + ///<inheritdoc/> |
| 9 | + public string Name => "Ivory Coast"; |
| 10 | + |
| 11 | + ///<inheritdoc/> |
| 12 | + public string OfficialName { get; } = "Republic of Côte d'Ivoire"; |
| 13 | + |
| 14 | + ///<inheritdoc/> |
| 15 | + public string NativeName { get; } = "Côte d'Ivoire"; |
| 16 | + |
| 17 | + ///<inheritdoc/> |
| 18 | + public string Capital { get; } = "Yamoussoukro"; |
| 19 | + |
| 20 | + ///<inheritdoc/> |
| 21 | + public int NumericCode { get; } = 384; |
| 22 | + |
| 23 | + ///<inheritdoc/> |
| 24 | + public string ISO2Code { get; } = "CI"; |
| 25 | + |
| 26 | + ///<inheritdoc/> |
| 27 | + public string ISO3Code { get; } = "CIV"; |
| 28 | + |
| 29 | + ///<inheritdoc/> |
| 30 | + public string CallingCode { get; } = "+225"; |
| 31 | + |
| 32 | + ///<inheritdoc/> |
| 33 | + public IEnumerable<State> States { get; } = |
| 34 | + [ |
| 35 | + new("Abidjan", "CI-AB", "Autonomous District"), |
| 36 | + new("Agnéby", "CI-16", "Region"), |
| 37 | + new("Bafing", "CI-17", "Region"), |
| 38 | + new("Bas-Sassandra", "CI-BS", "District"), |
| 39 | + new("Bas-Sassandra", "CI-09", "Region"), |
| 40 | + new("Comoé", "CI-CM", "District"), |
| 41 | + new("Denguélé", "CI-DN", "District"), |
| 42 | + new("Denguélé", "CI-10", "Region"), |
| 43 | + new("Dix-Huit Montagnes", "CI-06", "Region"), |
| 44 | + new("Fromager", "CI-18", "Region"), |
| 45 | + new("Gôh-Djiboua", "CI-GD", "District"), |
| 46 | + new("Haut-Sassandra", "CI-02", "Region"), |
| 47 | + new("Lacs", "CI-07", "Region"), |
| 48 | + new("Lacs", "CI-LC", "District"), |
| 49 | + new("Lagunes", "CI-01", "Region"), |
| 50 | + new("Lagunes", "CI-LG", "District"), |
| 51 | + new("Marahoué", "CI-12", "Region"), |
| 52 | + new("Montagnes", "CI-MG", "District"), |
| 53 | + new("Moyen-Cavally", "CI-19", "Region"), |
| 54 | + new("Moyen-Comoé", "CI-05", "Region"), |
| 55 | + new("N'zi-Comoé", "CI-11", "Region"), |
| 56 | + new("Sassandra-Marahoué", "CI-SM", "District"), |
| 57 | + new("Savanes", "CI-03", "Region"), |
| 58 | + new("Sud-Bandama", "CI-15", "Region"), |
| 59 | + new("Sud-Comoé", "CI-13", "Region"), |
| 60 | + new("Vallée du Bandama", "CI-04", "Region"), |
| 61 | + new("Vallée du Bandama", "CI-VB", "District"), |
| 62 | + new("Woroba", "CI-WR", "District"), |
| 63 | + new("Worodougou", "CI-14", "Region"), |
| 64 | + new("Yamoussoukro", "CI-YM", "District"), |
| 65 | + new("Zanzan", "CI-ZZ", "District"), |
| 66 | + ]; |
| 67 | + } |
| 68 | +} |
0 commit comments