15 lines
358 B
C#
Raw Normal View History

using System.Collections.Generic;
2021-04-21 02:00:50 -05:00
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;
}
}