10 lines
142 B
C#
10 lines
142 B
C#
using Newtonsoft.Json.Linq;
|
|
|
|
namespace Needle.Engine.Server
|
|
{
|
|
public struct RawMessage
|
|
{
|
|
public string type;
|
|
public JToken data;
|
|
}
|
|
} |