Files
UltimateFishing/Assets/Scripts/Assembly-CSharp/rail/GetGameServerListResult.cs
2026-02-21 16:45:37 +08:00

16 lines
262 B
C#

using System.Collections.Generic;
namespace rail
{
public class GetGameServerListResult : EventBase
{
public List<GameServerInfo> server_info = new List<GameServerInfo>();
public uint total_num;
public uint start_index;
public uint end_index;
}
}