2021-04-21 02:00:50 -05:00
|
|
|
namespace GameServiceWarden.InteractionAPI.Module
|
2021-04-08 21:36:08 -05:00
|
|
|
{
|
|
|
|
public struct ServiceManagerAction
|
|
|
|
{
|
|
|
|
public enum Type
|
|
|
|
{
|
|
|
|
|
|
|
|
Start,
|
|
|
|
Stop,
|
|
|
|
CreateService,
|
|
|
|
DeleteService,
|
|
|
|
ExecuteCommand,
|
|
|
|
SetServiceOption,
|
|
|
|
}
|
|
|
|
|
|
|
|
public string assemblyName;
|
|
|
|
public string moduleName;
|
|
|
|
public string serviceName;
|
|
|
|
public string option;
|
|
|
|
public string command;
|
|
|
|
public string value;
|
|
|
|
public Type action;
|
|
|
|
}
|
|
|
|
}
|