1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-14 11:23:42 +02:00
Sonarr/NzbDrone/Model/ApplicationMode.cs
Mark McDowall 125703a2fa Hidden startup, shutodwn and restart
New: Run without console window by default
New: Added NzbDrone.Console to run with console window
New: Shutdown from UI
New: Restart from UI
2013-01-06 00:25:45 -08:00

12 lines
173 B
C#

namespace NzbDrone.Model
{
public enum ApplicationMode
{
Console,
Help,
InstallService,
UninstallService,
Service
}
}