tgstation-server  4.3.2
The /tg/station 13 server suite
ServerInformation.cs
Go to the documentation of this file.
1 using System.Collections.Generic;
2 
3 namespace Tgstation.Server.Api.Models.Internal
4 {
8  public abstract class ServerInformation
9  {
13  public uint MinimumPasswordLength { get; set; }
14 
18  public uint InstanceLimit { get; set; }
19 
23  public uint UserLimit { get; set; }
24 
28  public ICollection<string>? ValidInstancePaths { get; set; }
29  }
30 }
Base class for Models.ServerInformation.