forked from selfmadecode/world.net
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDenmark.cs
More file actions
40 lines (31 loc) · 1.03 KB
/
Denmark.cs
File metadata and controls
40 lines (31 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
namespace World.Net.Countries;
internal sealed class Denmark : ICountry
{
///<inheritdoc/>
public CountryIdentifier Id => CountryIdentifier.Denmark;
///<inheritdoc/>
public string Name => nameof(Denmark);
///<inheritdoc/>
public string OfficialName { get; } = "Kingdom of Denmark";
///<inheritdoc/>
public string NativeName { get; } = "Danmark";
///<inheritdoc/>
public string Capital { get; } = "Copenhagen";
///<inheritdoc/>
public int NumericCode { get; } = 208;
///<inheritdoc/>
public string ISO2Code { get; } = "DK";
///<inheritdoc/>
public string ISO3Code { get; } = "DNK";
///<inheritdoc/>
public string[] CallingCode { get; } = ["+045"];
///<inheritdoc/>
public IEnumerable<State> States { get; } =
[
new("Central Denmark", "DK-82", "Region"),
new("Denmark", "DK-84", "Region"),
new("North Denmark", "DK-81", "Region"),
new("Southern Denmark", "DK-83", "Region"),
new("Zealand", "DK-85", "Region"),
];
}