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
551 B
26 lines
551 B
using System.ComponentModel;
|
|
|
|
namespace Znyc.Cloudcar.Admin.Commons.Enums
|
|
{
|
|
/// <summary>
|
|
/// 广告、活动状态
|
|
/// </summary>
|
|
public enum ActivityStatusEnum
|
|
{
|
|
/// <summary>
|
|
/// 未开始
|
|
/// </summary>
|
|
[Description("未开始")] NotStart = 0,
|
|
|
|
/// <summary>
|
|
/// 进行中
|
|
/// </summary>
|
|
[Description("进行中")] Ongoing = 1,
|
|
|
|
/// <summary>
|
|
/// 已结束
|
|
/// </summary>
|
|
[Description("已结束")] End = 2
|
|
|
|
}
|
|
}
|
|
|