LANCommander/LANCommander.SDK/Enums/ScriptType.cs
Pat Hartl 27d6ea6486 Add ability to modify a game's installation
- DownloadService has been renamed to InstallService
- In the library item context menu, there is a new option "Modify". This allows the user to selsct any additional addons to install as well as move the game to a separate storage location.
- Fixed issue where transfers were being double updated for installs
- Force UI update whenever queue is updates
2024-10-26 15:48:47 -05:00

31 lines
820 B
C#

using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
namespace LANCommander.SDK.Enums
{
public enum ScriptType
{
Install,
Uninstall,
[Display(Name = "Name Change")]
NameChange,
[Display(Name = "Key Change")]
KeyChange,
[Display(Name = "Save Upload")]
SaveUpload,
[Display(Name = "Save Download")]
SaveDownload,
[Display(Name = "Detect Install")]
DetectInstall,
[Display(Name = "Before Start")]
BeforeStart,
[Display(Name = "After Stop")]
AfterStop,
[Display(Name = "User Registration")]
UserRegistration,
[Display(Name = "User Login")]
UserLogin,
[Display(Name = "Application Start")]
ApplicationStart,
}
}