Files
2018-12-23 15:09:24 +08:00

33 lines
778 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Interact
{
//Json数据的字段访问字符串
public static class AttrNames
{
//基本信息
public const string Token = "Token";
public const string Operation = "Operation";
//处理结果信息
public const string Error = "Error";
//获取用户信息
public const string User = "User";
public const string NickName = "NickName";
public const string Motto = "Motto";
public const string UGroup = "UGroup";
public const string Photo = "Photo";
public const string Total = "Total";
public const string Count = "Count";
//消息
public const string When = "When";
public const string From = "From";
public const string To = "To";
}
}