tgstation-server
The /tg/station 13 server suite
Byond.cs
Go to the documentation of this file.
1 using System;
2 
4 {
8  public sealed class Byond
9  {
13  public Version Version { get; set; }
14 
18  public Job InstallJob { get; set; }
19  }
20 }
Job InstallJob
The Job being used to install a new Version
Definition: Byond.cs:18
Represents a BYOND installation
Definition: Byond.cs:8
Version Version
The System.Version of the Byond installation used for new compiles. Will be null if the user does not...
Definition: Byond.cs:13
Represents a long running job on the server. Model is read-only, updates attempt to cancel the job
Definition: Job.cs:6