using System.ComponentModel;
namespace NCC.VisualData.Entitys.Enum
{
///
/// 大屏图片枚举
///
public enum ScreenImgEnum
{
///
/// 背景图片
///
[Description("bg")]
BG = 0,
///
/// 图片框
///
[Description("border")]
BORDER = 1,
///
/// 图片
///
[Description("source")]
SOURCE = 1,
///
/// banner
///
[Description("banner")]
BANNER = 3,
///
/// 大屏截图
///
[Description("screenShot")]
SCREENSHOT = 4,
}
}