You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
611 B
22 lines
611 B
namespace Blazor.Models
|
|
{
|
|
public class Lobby
|
|
{
|
|
public int Id { get; private set; }
|
|
public string Name { get; private set; }
|
|
public string? Password { get; private set; }
|
|
public int nbPlayers { get; private set; }
|
|
|
|
public Lobby(int id, string name, string? password = null, int nbPlayers = 0)
|
|
{
|
|
Id = id;
|
|
Name = name;
|
|
Password = password;
|
|
this.nbPlayers = nbPlayers;
|
|
}
|
|
|
|
public void addPlayers(int nb) { nbPlayers += nb; }
|
|
public void removePlayers(int nb) { nbPlayers -= nb; }
|
|
}
|
|
}
|