DisplayMagician/HeliosDisplayManagement/CommandLineOptions.cs

29 lines
835 B
C#
Raw Normal View History

2017-02-26 19:23:31 +00:00
using System;
using System.Linq;
using System.Collections.Generic;
2017-02-26 19:23:31 +00:00
using System.Windows.Forms;
//using CommandLine;
//using CommandLine.Text;
2017-02-26 19:23:31 +00:00
using HeliosDisplayManagement.Resources;
using HeliosDisplayManagement.Shared;
using System.Runtime.CompilerServices;
2017-02-26 19:23:31 +00:00
namespace HeliosDisplayManagement
{
2017-02-26 19:23:31 +00:00
internal class CommandLineOptions
{
private CommandLineOptions()
{
}
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
}
}