refactor(Poll.java): add back Option constructors

This commit is contained in:
LucasGGamerM
2025-04-19 11:28:30 -03:00
parent 21cd4c3c36
commit 2740d5d267

View File

@@ -62,6 +62,12 @@ public class Poll extends BaseModel{
public String title;
public Integer votesCount;
// MOSHIDON: we use this once :D
public Option() {}
public Option(String title) {
this.title = title;
}
@Override
public String toString(){
return "Option{"+