Files
VOREStation/tools/tgs_test/TgsYml.cs
T
Selis 355c8ca5f0 DMAPI Update (#17935)
* DMAPI Update

* Fix

* More changes

* InitTgs

* .

* css

* urg

* fix that

* some linux fixes

* .

* .

* .

* update

* .

* pref fixing

* .

* those are already sent

* .

* .

* .

* fully off

* fix that

* New classes & Format

* make this nicer

* CSS Edits

* .

* eh use switch

* .

* Update client procs.dm

* Hard restart counter

* Improved Staffwho style

---------

Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com>
2025-07-02 22:21:14 +02: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; }
}