using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace GDZZ.Application.Enum
{
///
/// 活动类型
///
public enum BannerEnum
{
///
/// 轮播
///
[Description("轮播类型")] CAROUSEL = 0,
///
/// 待审核
///
[Description("待审核")] HEAD = 1,
}
}