-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Region.cs
25 lines (24 loc) · 910 Bytes
/
Region.cs
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
// © James Singleton. EUPL-1.2 (see the LICENSE file for the full license governing this code).
namespace octoplot.api
{
/// <summary>
/// Grid Supply Point
/// </summary>
public static class Region
{
public const string EastEngland = "A";
public const string EastMidlands = "B";
public const string London = "C";
public const string NorthWales = "D";
public const string WestMidlands = "E";
public const string NorthEastEngland = "F";
public const string NorthWestEngland = "G";
public const string SouthEngland = "H";
public const string SouthEastEngland = "J";
public const string SouthWales = "K";
public const string SouthWestEngland = "L";
public const string Yorkshire = "M";
public const string SouthScotland = "N";
public const string NorthScotland = "P";
}
}