Files
Servers/MoonlightServers.Daemon/Enums/ServerTrigger.cs
2025-02-12 23:02:00 +01:00

13 lines
236 B
C#

namespace MoonlightServers.Daemon.Enums;
public enum ServerTrigger
{
Start = 0,
Stop = 1,
Restart = 2,
Kill = 3,
Reinstall = 4,
NotifyOnline = 5,
NotifyContainerDied = 6,
NotifyInstallContainerDied = 7
}