17 lines
238 B
C#

namespace Ca2d.Toolkit.Bootable
{
public enum BootState
{
Created = 0,
Pending = 1,
Prepare = 2,
Running = 3,
Exit = 4,
Fatal = 5
}
}