_TheStrongestSnail/TheStrongestSnail/Assets/Scripts/Login/UI/ServerResponseBase.cs

9 lines
138 B
C#

using System;
[Serializable]
public class ServerResponseBase
{
public int code;
public Data data;
public string message;
}