Files
2023-09-21 16:31:32 +09:00

14 lines
485 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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";
}
}