using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FlexJobApi.Core
{
///
/// 用户钱包收支类型
///
public enum EnumUserWalletTransactionType
{
///
/// 收入
///
Income = 10,
///
/// 提现
///
Withdraw = 20
}
}