11 lines
190 B
C#
11 lines
190 B
C#
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using UnityEngine;
|
||
|
|
||
|
public class Proposition
|
||
|
{
|
||
|
public string photoUrl;
|
||
|
public Player owner;
|
||
|
public string[] voters;
|
||
|
}
|