| 123456789101112131415161718 |
- using System;
- using SKMC.Api.Common.Exceptions;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace SKMC.Api.Device.Config
- {
- public abstract class DeviceConfigStore
- {
- /// <summary>
- /// 异常配置集
- /// </summary>
- public List<ExceptionConfig> Exceptions { get; set; }
- }
- }
|