Files
Bubberstation/tools/tgs_test/TgsYml.cs
SkyratBot 710319fced [MIRROR] Update some TGS stuff [MDB IGNORE] (#19485)
* Update some TGS stuff

* You're welcome Cyber

---------

Co-authored-by: Jordan Dominion <Cyberboss@users.noreply.github.com>
Co-authored-by: GoldenAlpharex <58045821+GoldenAlpharex@users.noreply.github.com>
2023-02-26 19:06:30 -05: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; }
}