22 lines
593 B
C#
22 lines
593 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
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; }
|
|
|
|
}
|
|
}
|