mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 08:22:35 +01:00
125703a2fa
New: Run without console window by default New: Added NzbDrone.Console to run with console window New: Shutdown from UI New: Restart from UI
15 lines
205 B
C#
15 lines
205 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace NzbDrone.Update
|
|
{
|
|
public enum AppType
|
|
{
|
|
Normal,
|
|
Console,
|
|
Service
|
|
}
|
|
}
|