DeviceConfigStore.cs 383 B

123456789101112131415161718
  1. using System;
  2. using SKMC.Api.Common.Exceptions;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace SKMC.Api.Device.Config
  8. {
  9. public abstract class DeviceConfigStore
  10. {
  11. /// <summary>
  12. /// 异常配置集
  13. /// </summary>
  14. public List<ExceptionConfig> Exceptions { get; set; }
  15. }
  16. }