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