refactor(Poll.java): add back Option constructors
This commit is contained in:
@@ -62,6 +62,12 @@ public class Poll extends BaseModel{
|
|||||||
public String title;
|
public String title;
|
||||||
public Integer votesCount;
|
public Integer votesCount;
|
||||||
|
|
||||||
|
// MOSHIDON: we use this once :D
|
||||||
|
public Option() {}
|
||||||
|
public Option(String title) {
|
||||||
|
this.title = title;
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String toString(){
|
public String toString(){
|
||||||
return "Option{"+
|
return "Option{"+
|
||||||
|
|||||||
Reference in New Issue
Block a user