13 lines
236 B
C#
Raw Normal View History

2024-01-27 10:19:32 +01:00
using System;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
2024-01-27 12:24:47 +01:00
[System.Serializable]
2024-01-27 10:19:32 +01:00
public class Question
{
public string promptId;
public Proposition propositions;
public int creationDate;
}