mirror of
https://github.com/MilkBarModding/MilkBarLauncher.git
synced 2025-06-16 12:11:01 +00:00
12 lines
252 B
C#
12 lines
252 B
C#
namespace BOTWM.Server.DTO
|
|
{
|
|
public class ConnectResponseDTO
|
|
{
|
|
public int Response;
|
|
public int PlayerNumber;
|
|
public ServerSettings Settings;
|
|
public bool QuestSync;
|
|
public string EnemySyncList;
|
|
}
|
|
}
|