using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LifePayment.Domain.Shared
{
///
/// 代理类型
///
public enum LifePayChannelAgentType
{
///
/// 零售代理
///
RetailAgent = 1,
///
/// 品牌代理
///
BrandAgent = 2,
///
/// 区域代理
///
AreaAgent = 3
}
}