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
{
///
/// 异常配置集
///
public List Exceptions { get; set; }
}
}