tgstation-server 6.12.0
The /tg/station 13 server suite
Loading...
Searching...
No Matches
ReattachInformation.cs
Go to the documentation of this file.
1using System;
2using System.ComponentModel.DataAnnotations;
3
5{
10 {
14 [Required]
15 public CompileJob? CompileJob { get; set; }
16
20 public long CompileJobId { get; set; }
21
25 public CompileJob? InitialCompileJob { get; set; }
26
30 public long? InitialCompileJobId { get; set; }
31
35 [Obsolete("For use by EFCore only", true)]
37 {
38 }
39
44 public ReattachInformation(string accessIdentifier)
45 : base(accessIdentifier)
46 {
47 }
48 }
49}
Database representation of Components.Session.ReattachInformation.
long? InitialCompileJobId
The Api.Models.EntityId.Id of InitialCompileJob.
ReattachInformation()
Initializes a new instance of the ReattachInformation class.
CompileJob? InitialCompileJob
The Models.CompileJob the server was initially launched with in the case of Windows.
ReattachInformation(string accessIdentifier)
Initializes a new instance of the ReattachInformation class.
long CompileJobId
The Api.Models.EntityId.Id of CompileJob.