|
| 1 | +namespace World.Net.Countries |
| 2 | +{ |
| 3 | + internal sealed class Libya : ICountry |
| 4 | + { |
| 5 | + |
| 6 | + //<inheritdoc/> |
| 7 | + public CountryIdentifier Id => CountryIdentifier.Libya; |
| 8 | + |
| 9 | + //<inheritdoc/> |
| 10 | + public string Name { get; } = "Libya"; |
| 11 | + |
| 12 | + //<inheritdoc/> |
| 13 | + public string OfficialName { get; } = "State of Libya"; |
| 14 | + |
| 15 | + //<inheritdoc/> |
| 16 | + public string NativeName { get; } = "دولة ليبيا"; |
| 17 | + |
| 18 | + //<inheritdoc/> |
| 19 | + public string Capital { get; } = "Tripoli"; |
| 20 | + |
| 21 | + //<inheritdoc/> |
| 22 | + public int NumericCode { get; } = 434; |
| 23 | + |
| 24 | + //<inheritdoc/> |
| 25 | + public string ISO2Code { get; } = "LY"; |
| 26 | + |
| 27 | + //<inheritdoc/> |
| 28 | + public string ISO3Code { get; } = "LBY"; |
| 29 | + |
| 30 | + //<inheritdoc/> |
| 31 | + public string[] CallingCode { get; } = ["+218"]; |
| 32 | + |
| 33 | + //<inheritdoc/> |
| 34 | + public IEnumerable<State> States { get; } = |
| 35 | + [ |
| 36 | + new("Al Butnan", "LY-BU", "District"), |
| 37 | + new("Al Jabal al Akhdar", "LY-JA", "District"), |
| 38 | + new("Al Jabal al Gharbi", "LY-JG", "District"), |
| 39 | + new("Al Jafara", "LY-JI", "District"), |
| 40 | + new("Al Jufra", "LY-JU", "District"), |
| 41 | + new("Al Kufra", "LY-KF", "District"), |
| 42 | + new("Al Marj", "LY-MJ", "District"), |
| 43 | + new("Al Marqab", "LY-MB", "District"), |
| 44 | + new("Al Wahat", "LY-WA", "District"), |
| 45 | + new("Nalut", "LY-NL", "District"), |
| 46 | + new("Misrata", "LY-MI", "District"), |
| 47 | + new("Murzuq", "LY-MQ", "District"), |
| 48 | + new("Sabha", "LY-SB", "District"), |
| 49 | + new("Sirt", "LY-SR", "District"), |
| 50 | + new("Tripoli", "LY-TB", "District"), |
| 51 | + new("Wadi al Hayat", "LY-WD", "District"), |
| 52 | + new("Wadi ash Shati'", "LY-WS", "District"), |
| 53 | + new("Zawiya", "LY-ZA", "District") |
| 54 | + ]; |
| 55 | + } |
| 56 | + |
| 57 | +} |
0 commit comments