12 lines
214 B
C#
12 lines
214 B
C#
|
using System;
|
||
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using UnityEngine;
|
||
|
|
||
|
public class Question
|
||
|
{
|
||
|
public string promptId;
|
||
|
public Proposition propositions;
|
||
|
public int creationDate;
|
||
|
}
|