tgstation-server  4.3.2
The /tg/station 13 server suite
TopicResponse.cs
Go to the documentation of this file.
1 using System.Collections.Generic;
3 
4 namespace Tgstation.Server.Host.Components.Interop.Topic
5 {
9  sealed class TopicResponse : DMApiResponse
10  {
14  public string CommandResponseMessage { get; set; }
15 
19  public ICollection<ChatMessage> ChatResponses { get; set; }
20 
24  public ICollection<CustomCommand> CustomCommands { get; set; }
25  }
26 }