LANCommander/LANCommander.Server.ImportExport/Legacy/Models/MultiplayerInfo.cs
2025-12-04 23:44:42 -06:00

11 lines
No EOL
328 B
C#

using LANCommander.Server.ImportExport.Legacy.Enums;
namespace LANCommander.Server.ImportExport.Legacy.Models;
internal class MultiplayerInfo
{
public int MinPlayers { get; set; }
public int MaxPlayers { get; set; }
public string Description { get; set; }
public NetworkProtocol NetworkProtocol { get; set; }
}