using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MyCode.Project.Infrastructure.Enumeration
{
///
/// 门票活动类型 0=裂变门票活动 1=新店活动 2=99女神卡活动 3=通用类型 4=分销关系链活动
///
public enum ActivityType
{
///
/// 裂变门票
///
[Description("裂变门票")]
FissionTicket = 0,
///
/// 新店活动
///
[Description("新店活动")]
NewShop = 1,
///
/// 99女神卡活动
///
[Description("99女神卡活动")]
Nymph = 2,
///
/// 通用类型
///
[Description("通用类型")]
Common = 3,
///
/// 分销关系链活动
///
[Description("分销关系链活动")]
DistributionRelationshipChain = 4,
///
/// 会员报名活动
///
[Description("会员报名活动")]
MemberApply = 5,
}
}