Melhorando estados
This commit is contained in:
parent
eb3f317085
commit
407b38fac0
2 changed files with 2 additions and 2 deletions
|
@ -6,4 +6,4 @@ export default class Jogo {
|
|||
) { }
|
||||
}
|
||||
|
||||
export type Estado = 'NOVO' | 'ZERADO';
|
||||
export type Estado = 'NOVO' | 'JOGUEI' | 'SATISFEITO' | 'PALHA' | 'ETERNO';
|
|
@ -1,5 +1,5 @@
|
|||
package casa.sotu.organizajogos.api.modelo;
|
||||
|
||||
public enum Estado {
|
||||
NOVO, ZERADO;
|
||||
NOVO, JOGUEI, SATISFEITO, ETERNO;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue