10 lines
130 B
C#
Raw Normal View History

namespace ProjectBulldozer.Generics
{
public enum Status
{
NotInit,
InProgress,
Finish
}
}