Add executable getter/setter to put it in the steam startup option

pull/96/head
stevealexandre 2 years ago
parent 3f2c6c610e
commit 142e6529e7

@ -35,6 +35,16 @@ namespace UWPHook
set { _name = value; }
}
private string _executable;
/// <summary>
/// Gets or sets the executable of the application
/// </summary>
public string Executable
{
get { return _executable; }
set { _executable = value; }
}
private string _aumid;
/// <summary>
/// Gets or sets the aumid of the application

Loading…
Cancel
Save