using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Text;
namespace Ips.Library.Entity
{
///
/// 时钟类型
///
public enum AdClockType
{
///
/// 内时钟
///
[Description("内时钟")]
In = 0,
///
/// 外时钟
///
[Description("外时钟")]
Out = 1,
///
/// 外参考
///
[Description("外参考")]
OutRef = 2
}
}