Snaparazzi/Assets/Scripts/DatabaseClasses/Question.cs

14 lines
265 B
C#
Raw Normal View History

2024-01-27 09:19:32 +00:00
using System;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
2024-01-27 11:24:47 +00:00
[System.Serializable]
2024-01-27 18:54:06 +00:00
[Newtonsoft.Json.JsonObject]
2024-01-27 09:19:32 +00:00
public class Question
{
public string promptId;
public Proposition propositions;
public int creationDate;
}