11 lines
No EOL
328 B
C#
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; }
|
|
} |