using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace YBDevice.NApi.Application.ThirdClient
{
///
/// UA类型
///
public class UAConst
{
///
/// 微信小程序
///
public const int WeiXin = 1;
///
/// 字节小程序
///
public const int TouTiao = 2;
///
/// 其他客户端
///
public const int Other = 0;
}
}