using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
namespace SWRIS.Enums
{
public enum ResetType
{
///
/// 不重置
///
[Description("不重置")]
NoReset = 0,
///
/// 延时重置
///
[Description("延时重置")]
[Range(1, short.MaxValue)]
DelayedReset = 1,
///
/// 新测试重置
///
[Description("新测试重置")]
NewTestReset = -1
}
}