tgstation-server  4.4.0
The /tg/station 13 server suite
BridgeParameters.cs
Go to the documentation of this file.
1 using System;
2 using System.Collections.Generic;
5 
6 namespace Tgstation.Server.Host.Components.Interop.Bridge
7 {
11  public sealed class BridgeParameters : DMApiParameters
12  {
16  public BridgeCommandType? CommandType { get; set; }
17 
21  public ushort? CurrentPort { get; set; }
22 
26  public Version Version { get; set; }
27 
31  public ICollection<CustomCommand> CustomCommands { get; set; }
32 
36  public DreamDaemonSecurity? MinimumSecurityLevel { get; set; }
37 
41  public ChatMessage ChatMessage { get; set; }
42  }
43 }
BridgeCommandType
Represents the BridgeParameters.CommandType.
DreamDaemonSecurity
DreamDaemon&#39;s security level
Represents a message to send to one or more Chat.ChannelRepresentations.
Definition: ChatMessage.cs:8