8 lines
99 B
Java
8 lines
99 B
Java
package ProjectElectricLocomotive;
|
|
|
|
public enum Status {
|
|
NotInit,
|
|
InProgress,
|
|
Finish
|
|
}
|