2021-04-08 21:36:08 -05:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
2021-04-21 02:00:50 -05:00
|
|
|
namespace GameServiceWarden.InteractionAPI.Module
|
2021-04-08 21:36:08 -05:00
|
|
|
{
|
2021-04-21 01:14:05 -05:00
|
|
|
public struct ServiceManagerTotal
|
2021-04-08 21:36:08 -05:00
|
|
|
{
|
|
|
|
public ICollection<string> services;
|
|
|
|
public ICollection<string> running;
|
|
|
|
public ICollection<string> modules;
|
2021-04-19 01:34:45 -05:00
|
|
|
public IReadOnlyDictionary<string, byte[]> logs;
|
2021-04-08 21:36:08 -05:00
|
|
|
public IReadOnlyDictionary<string, IReadOnlyDictionary<string, string>> serviceOptions;
|
|
|
|
}
|
|
|
|
}
|