2024-01-27 20:05:24 +01:00
|
|
|
using Newtonsoft.Json;
|
2024-01-27 10:19:32 +01:00
|
|
|
using System;
|
|
|
|
|
2024-01-27 19:58:02 +01:00
|
|
|
[Serializable]
|
2024-01-27 20:05:24 +01:00
|
|
|
[JsonObject]
|
2024-01-27 10:19:32 +01:00
|
|
|
public class Question
|
|
|
|
{
|
|
|
|
public string promptId;
|
|
|
|
public Proposition propositions;
|
|
|
|
public int creationDate;
|
|
|
|
}
|