From 0c3aebce620d84b0de7da4cce9b1b473a36fc542 Mon Sep 17 00:00:00 2001 From: Cyberboss Date: Fri, 13 Jul 2018 11:16:12 -0400 Subject: [PATCH] Document ChatResponse --- .../Components/Chat/ChatResponse.cs | 10 ++++++++++ 1 file changed, 10 insertions(+) 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; } } }