using System.ComponentModel;
namespace SnapshotWinFormsApp.Entities.NewHotline;
public enum EPointsSource
{
///
/// 上报积分
///
[Description("上报积分")]
Report = 0,
///
/// 审核积分
///
[Description("审核积分")]
Audit = 1,
///
/// 积分兑换
///
[Description("积分兑换")]
Exchange = 3,
}