14 lines
485 B
C#
14 lines
485 B
C#
namespace HSUCO_Cargo_Garage_Operation_Program
|
||
{
|
||
public static class Global
|
||
{
|
||
public static Settings GlobalSettings { get; set; }
|
||
public static readonly string AreaLarge = "13m × 3.25m";
|
||
public static readonly string AreaOversized = "17m × 3.5m";
|
||
|
||
public static readonly string SuffixApplicantLot = "L";
|
||
public static readonly string SuffixApplicantWait = "W";
|
||
public static readonly string SuffixCertificate = "C";
|
||
}
|
||
}
|