using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Domain
{
///
/// 时间单位
///
public enum DateTimeUnit
{
///
/// 年
///
Year = 0,
///
/// 月
///
Month = 1,
///
/// 日
///
Day = 2,
///
/// 小时
///
Hour = 3,
///
/// 分钟
///
Minute = 4,
///
/// 秒
///
Second = 5
}
}