/********************************
*
* 作者:吴隆健
* 创建时间: 2019/7/3 15:00:59
*
********************************/
using System;
using System.ComponentModel;
namespace GameDAL.Game {
[Flags]
public enum GoldStyle {
///
/// None
///
//[Description("None")]
None =0,
///
/// 赠送
///
[Description("赠送")]
GiveAway = 1,
///
/// 购买
///
[Description("购买")]
Buy = 2,
///
/// 回收
///
[Description("回收")]
Recycle = 4,
///
/// 存取
///
[Description("存取")]
access = 8,
///
/// 其他
///
[Description("其他")]
Other = 1024,
///
/// ALL
///
[Description("全部")]
All = GiveAway | Buy | Recycle | access | Other
}
}