diff --git a/src/Tgstation.Server.Host/Components/Chat/ChatResponse.cs b/src/Tgstation.Server.Host/Components/Chat/ChatResponse.cs index e7bc242642..67f8cf6782 100644 --- a/src/Tgstation.Server.Host/Components/Chat/ChatResponse.cs +++ b/src/Tgstation.Server.Host/Components/Chat/ChatResponse.cs @@ -2,9 +2,19 @@ namespace Tgstation.Server.Host.Components.Chat { + /// + /// Represents a chat message requested by DD + /// sealed class ChatResponse { + /// + /// The message string + /// public string Message { get; set; } + + /// + /// The list of internal channel ids to send to + /// public List ChannelIds { get; set; } } }