2024-01-27 09:19:32 +00:00
|
|
|
using System;
|
|
|
|
|
2024-01-27 18:58:02 +00:00
|
|
|
[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;
|
|
|
|
}
|