6 lines
71 B
Java
6 lines
71 B
Java
|
public enum Status {
|
||
|
NotInit,
|
||
|
InProgress,
|
||
|
Finish
|
||
|
}
|