Follow the leader
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
此仓库已存档。您可以查看文件和克隆,但不能推送或创建工单/合并请求。

14 行
234B

  1. using System;
  2. namespace Leadercraft.Server
  3. {
  4. // Json Serialisation struct
  5. #pragma warning disable 0649
  6. internal struct KeyStruct
  7. {
  8. public string Token;
  9. public ulong PlayerID;
  10. }
  11. #pragma warning restore 0649
  12. }