tgstation-server 6.8.0
The /tg/station 13 server suite
Loading...
Searching...
No Matches
SwarmServer.cs
Go to the documentation of this file.
1using System;
2using System.ComponentModel.DataAnnotations;
3
5{
9 public abstract class SwarmServer
10 {
14 [Required]
15 public virtual Uri? Address { get; set; }
16
20 public virtual Uri? PublicAddress { get; set; }
21
25 [Required]
26 public string? Identifier { get; set; }
27 }
28}
Information about a server in the swarm.
Definition: SwarmServer.cs:10
virtual ? Uri PublicAddress
The address the swarm server can be publically accessed.
Definition: SwarmServer.cs:20
virtual ? Uri Address
The public address of the server.
Definition: SwarmServer.cs:15
string? Identifier
The server's identifier.
Definition: SwarmServer.cs:26