mirror of
https://github.com/MilkBarModding/MilkBarLauncher.git
synced 2025-06-17 12:41:39 +00:00
12 lines
308 B
C#
12 lines
308 B
C#
namespace BOTWM.Server.DTO
|
|
{
|
|
public class PingDTO
|
|
{
|
|
public bool CorrectPassword { get; set; }
|
|
public string Description { get; set; }
|
|
public NamesDTO PlayerList { get; set; }
|
|
public string GameMode { get; set; }
|
|
public int PlayerLimit { get; set; }
|
|
}
|
|
}
|