30 lines
699 B
C#
30 lines
699 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using DH.Commons.Base;
|
|
|
|
namespace DH.Commons.Models
|
|
{
|
|
public static class SystemModel
|
|
{
|
|
/// <summary>
|
|
/// 当前方案
|
|
/// </summary>
|
|
public static string CurrentScheme=string.Empty;
|
|
|
|
|
|
}
|
|
|
|
/// <summary>
|
|
/// 配置集合
|
|
/// </summary>
|
|
public static class ConfigModel
|
|
{
|
|
public static List<CameraBase> CameraBaseList = new List<CameraBase>();
|
|
public static List<PLCBase> PLCBaseList = new List<PLCBase>();
|
|
public static List<DetectionConfig> DetectionList = new List<DetectionConfig>();
|
|
}
|
|
}
|