You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
512 B
26 lines
512 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace GDZZ.Application.Enum
|
|
{
|
|
/// <summary>
|
|
/// 活动类型
|
|
/// </summary>
|
|
public enum BannerEnum
|
|
{
|
|
/// <summary>
|
|
/// 轮播
|
|
/// </summary>
|
|
[Description("轮播类型")] CAROUSEL = 0,
|
|
/// <summary>
|
|
/// 待审核
|
|
/// </summary>
|
|
[Description("待审核")] HEAD = 1,
|
|
|
|
}
|
|
}
|