2017-02-26 19:23:31 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Linq;
|
2020-04-13 03:47:38 +00:00
|
|
|
|
using System.Collections.Generic;
|
2017-02-26 19:23:31 +00:00
|
|
|
|
using System.Windows.Forms;
|
2020-04-13 03:47:38 +00:00
|
|
|
|
//using CommandLine;
|
|
|
|
|
//using CommandLine.Text;
|
2017-02-26 19:23:31 +00:00
|
|
|
|
using HeliosDisplayManagement.Resources;
|
|
|
|
|
using HeliosDisplayManagement.Shared;
|
2020-04-13 03:47:38 +00:00
|
|
|
|
using System.Runtime.CompilerServices;
|
2017-02-26 19:23:31 +00:00
|
|
|
|
|
|
|
|
|
namespace HeliosDisplayManagement
|
|
|
|
|
{
|
2020-04-13 03:47:38 +00:00
|
|
|
|
|
2017-02-26 19:23:31 +00:00
|
|
|
|
internal class CommandLineOptions
|
|
|
|
|
{
|
|
|
|
|
private CommandLineOptions()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2020-04-13 03:47:38 +00:00
|
|
|
|
public static HeliosStartupAction Action { get; set; }
|
|
|
|
|
public static string ExecuteArguments { get; set; }
|
|
|
|
|
public static string ExecuteFilename { get; set; }
|
|
|
|
|
public static string ExecuteProcessName { get; set; }
|
|
|
|
|
public static uint ExecuteProcessTimeout { get; set; }
|
|
|
|
|
public static uint ExecuteSteamApp { get; set; }
|
|
|
|
|
public static string ProfileId { get; set; }
|
|
|
|
|
|
2017-02-26 19:23:31 +00:00
|
|
|
|
}
|
|
|
|
|
}
|