28 lines
587 B
C#
28 lines
587 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.ComponentModel;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace MyCode.Project.Infrastructure.Enumeration
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 奖品来源 1 门票 2 首单赠送
|
|||
|
/// </summary>
|
|||
|
public enum SourceType
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 门票
|
|||
|
/// </summary>
|
|||
|
[Description("门票")]
|
|||
|
Tickets = 1,
|
|||
|
/// <summary>
|
|||
|
/// 首单赠送
|
|||
|
/// </summary>
|
|||
|
[Description("首单赠送")]
|
|||
|
FirstOrderGift = 2,
|
|||
|
|
|||
|
}
|
|||
|
}
|