using System;
|
using System.Collections.Generic;
|
using System.ComponentModel.DataAnnotations;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace IStation
|
{
|
/// <summary>
|
/// 软件类型
|
/// </summary>
|
public class SoftType
|
{
|
public const string BS_网页端 = "BS";
|
public const string CS_客户端 = "CS";
|
public const string App_移动端 = "APP";
|
public const string Wechat_微信小程序 = "WechatApplet";
|
|
|
|
}
|
}
|