5 lines
62 B
Java
5 lines
62 B
Java
|
public enum Status {
|
||
|
NotInit,
|
||
|
InProgress,
|
||
|
Finish
|
||
|
}
|