13 lines
236 B
C#
13 lines
236 B
C#
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
[System.Serializable]
|
|
public class Question
|
|
{
|
|
public string promptId;
|
|
public Proposition propositions;
|
|
public int creationDate;
|
|
}
|