using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace GDZZ.Application.Enum
{
public enum RechargeTypeEnum
{
///
/// 奖励
///
[Description("奖励")] Reward = 10,
///
/// 储值
///
[Description("储值")] StoredValue = 20,
}
}