ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/public/Qzhteln/trunk/TELTest/Matchmaking/Lobby.cs
Revision: 2
Committed: Wed Feb 11 13:07:01 2026 UTC (8 weeks, 3 days ago) by figdor32
File size: 753 byte(s)
Log Message:
Initial check-in

File Contents

# User Rev Content
1 figdor32 2 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     }