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