Snaparazzi/Assets/Scripts/DatabaseClasses/Proposition.cs
2024-01-27 19:54:06 +01:00

13 lines
241 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
[System.Serializable]
[Newtonsoft.Json.JsonObject]
public class Proposition
{
public string photoUrl;
public Player owner;
public string[] voters;
}