tgstation-server  4.4.0
The /tg/station 13 server suite
Byond.cs
Go to the documentation of this file.
1 using System;
3 
4 namespace Tgstation.Server.Api.Models
5 {
9  public sealed class Byond : RawData
10  {
14  public Version? Version { get; set; }
15 
19  public Job? InstallJob { get; set; }
20  }
21 }
Represents a BYOND installation. RawData.Content is used to upload custom BYOND version zip files...
Definition: Byond.cs:9
Represents a long running job on the server. Model is read-only, updates attempt to cancel the job ...
Definition: Job.cs:6