2021-04-21 01:14:05 -05:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
2021-04-21 02:00:50 -05:00
|
|
|
namespace GameServiceWarden.InteractionAPI.Module
|
2021-04-21 01:14:05 -05:00
|
|
|
{
|
|
|
|
public struct ServiceManagerDelta
|
|
|
|
{
|
|
|
|
public bool subtract;
|
|
|
|
public string service;
|
|
|
|
public string running;
|
|
|
|
public string modules;
|
|
|
|
public byte[] logs;
|
|
|
|
public string optionName;
|
|
|
|
public string optionValue;
|
|
|
|
}
|
|
|
|
}
|