mirror of https://github.com/Jackett/Jackett
11 lines
333 B
C#
11 lines
333 B
C#
|
using CommandLine;
|
|||
|
|
|||
|
namespace Jackett.Tray
|
|||
|
{
|
|||
|
public class TrayConsoleOptions
|
|||
|
{
|
|||
|
[Option("UpdatedVersion", HelpText = "Indicates the new version that Jackett just updated to so that user understands why they are getting a prompt to start Windows service")]
|
|||
|
public string UpdatedVersion { get; set; }
|
|||
|
}
|
|||
|
}
|