11 lines
216 B
C#
11 lines
216 B
C#
namespace MoonlightServers.Daemon.Models;
|
|
|
|
public enum ServerTask
|
|
{
|
|
None = 0,
|
|
CreatingStorage = 1,
|
|
PullingDockerImage = 2,
|
|
RemovingContainer = 3,
|
|
CreatingContainer = 4,
|
|
StartingContainer = 5
|
|
} |