2024-01-27 19:05:24 +00:00
|
|
|
using Newtonsoft.Json;
|
2024-01-27 18:58:02 +00:00
|
|
|
using System;
|
2024-01-27 09:19:32 +00:00
|
|
|
|
2024-01-27 18:58:02 +00:00
|
|
|
[Serializable]
|
2024-01-27 19:05:24 +00:00
|
|
|
[JsonObject]
|
2024-01-27 09:19:32 +00:00
|
|
|
public class Proposition
|
|
|
|
{
|
|
|
|
public string photoUrl;
|
|
|
|
public Player owner;
|
|
|
|
public string[] voters;
|
2024-01-27 22:05:27 +00:00
|
|
|
public double creationDate;
|
2024-01-27 09:19:32 +00:00
|
|
|
}
|