12 lines
176 B
C#
12 lines
176 B
C#
using Newtonsoft.Json;
|
|
using System;
|
|
|
|
[Serializable]
|
|
[JsonObject]
|
|
public class Proposition
|
|
{
|
|
public string photoUrl;
|
|
public Player owner;
|
|
public string[] voters;
|
|
}
|