mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-05-21 06:07:16 +01:00
355c8ca5f0
* 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>
16 lines
475 B
C#
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; }
|
|
}
|