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