LANCommander/LANCommander.Server.ImportExport/Legacy/Models/MultiplayerInfo.cs

11 lines
328 B
C#
Raw Permalink Normal View History

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; }
}