| 1 |
using System; |
| 2 |
using System.Collections.Generic; |
| 3 |
using System.Linq; |
| 4 |
using System.Text; |
| 5 |
using System.Threading.Tasks; |
| 6 |
|
| 7 |
namespace TELTest.Matchmaking { |
| 8 |
public class Lobby { |
| 9 |
public string Identifier { get; set; } |
| 10 |
public string Name { get; set; } = "Bez nazwy"; |
| 11 |
public int PlayerLimit { get; set; } = -1; |
| 12 |
public string Password { get; set; } |
| 13 |
public bool AnnouncePublic { get; set; } = false; |
| 14 |
public QuizContainer Subject { get; set; } |
| 15 |
public QuizGamemode Gamemode { get; set; } |
| 16 |
public DateTime LastAccessed { get; set; } |
| 17 |
public List<ConnectionHandler> Players { get; set; } = new List<ConnectionHandler>(); |
| 18 |
public object Storage { get; set; } |
| 19 |
} |
| 20 |
} |