namespace Dongke.WinForm.Controls
{
///
/// 日期/时间间隔单位
///
public enum DateTimeRangeUnit
{
///
/// 年
///
Year = 0,
///
/// 月
///
Month,
///
/// 日
///
Day,
///
/// 小时
///
Hour,
///
/// 分钟
///
Minute,
///
/// 秒
///
Second,
///
/// 毫秒
///
Millisecond,
}
}