21 lines
476 B
C#
21 lines
476 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";
|
|
}
|
|
}
|