20 lines
328 B
C#
20 lines
328 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace VideoFission.Entitys
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 奖励条件
|
|||
|
/// </summary>
|
|||
|
public enum RuleType
|
|||
|
{
|
|||
|
好友天数 = 0,
|
|||
|
订单总数 = 1,
|
|||
|
推荐人数 = 2
|
|||
|
}
|
|||
|
|
|||
|
}
|