Files
fulpstation/tools/tgs_test/TgsYml.cs
John Willard 6552e93874 Late feb tgu (#927)
* TGU again

* Update infiltrator.dm

* i will damn you to hell sinner
2023-03-10 01:06:37 -03:00

16 lines
475 B
C#

using Tgstation.Server.Api.Models;
sealed class TgsYml
{
public int Version { get; set; }
public string Byond { get; set; } = String.Empty;
public List<StaticFile> StaticFiles { get; set; } = new List<StaticFile>();
public Dictionary<string, string> WindowsScripts { get; set; } = new Dictionary<string, string>();
public Dictionary<string, string> LinuxScripts { get; set; } = new Dictionary<string, string>();
public DreamDaemonSecurity Security { get; set; }
}