/** * Represents a vote */ export class Vote { private _votes: Array; /** * Constructs a vote * * @param votes - The list of votes values */ public constructor(votes: Array) { this.votes = votes; } get votes(): Array { return this._votes; } set votes(value: Array) { this._votes = value; } }