using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LifePayment.Domain.Shared
{
public enum WalletPayChannelSettingStatus
{
///
/// 未配置
///
NotSetting = -10,
///
/// 已配置
///
IsSetting = 10,
}
public enum WalletPayChannelStatus
{
///
/// 禁用
///
Disable = -10,
///
/// 启用
///
Enable = 10,
}
}