tgstation-server 5.12.1
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 [Required]
21 public string? Identifier { get; set; }
22 }
23}
Information about a server in the swarm.
Definition: SwarmServer.cs:10
virtual ? Uri Address
The public address of the server.
Definition: SwarmServer.cs:15
string? Identifier
The server's identifier.
Definition: SwarmServer.cs:21