using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FlexJobApi.Core
{
///
/// 客户端类型
///
public enum EnumClientType
{
///
/// 电脑网页
///
PcWeb = 10,
///
/// 微信小程序
///
Wxmp = 20,
}
}