11 lines
212 B
C#
11 lines
212 B
C#
|
using System.Collections.Generic;
|
||
|
|
||
|
public class Room
|
||
|
{
|
||
|
public string code;
|
||
|
public List<Question> questions;
|
||
|
public List<Player> players;
|
||
|
public int currentQuestion;
|
||
|
public int creationDate;
|
||
|
}
|