16 lines
462 B
C#
16 lines
462 B
C#
namespace Client.Config
|
|
{
|
|
|
|
public static class Config
|
|
{
|
|
|
|
public static SubModels.Client ClientConfig;
|
|
public static SubModels.Connection ConnectionConfig;
|
|
public static SubModels.VendorHmi VendorHmiConfig;
|
|
public static SubModels.ProdSoftware ProdSoftwareConfig { get; set; }
|
|
public static string TextEditorPath { get; set; }
|
|
public static SubModels.Software[] ExtSoftwaresConfig { get; set; }
|
|
|
|
}
|
|
}
|