This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
gameservicewarden/GameServiceWarden/GameServiceWarden.InteractionAPI/Module/ServiceManagerDelta.cs

15 lines
358 B
C#

using System.Collections.Generic;
namespace GameServiceWarden.InteractionAPI.Module
{
public struct ServiceManagerDelta
{
public bool subtract;
public string service;
public string running;
public string modules;
public byte[] logs;
public string optionName;
public string optionValue;
}
}