2024-05-07 01:47:00 -05:00
|
|
|
|
using LANCommander.SDK.Enums;
|
|
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
|
|
namespace LANCommander.SDK.Models
|
|
|
|
|
|
{
|
2024-05-23 18:38:13 -05:00
|
|
|
|
public class MultiplayerMode : KeyedModel
|
2024-05-07 01:47:00 -05:00
|
|
|
|
{
|
|
|
|
|
|
public MultiplayerType Type { get; set; }
|
|
|
|
|
|
public NetworkProtocol NetworkProtocol { get; set; }
|
|
|
|
|
|
public string Description { get; set; }
|
|
|
|
|
|
public int MinPlayers { get; set; }
|
|
|
|
|
|
public int MaxPlayers { get; set; }
|
|
|
|
|
|
public int Spectators { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|