mirror of
https://github.com/tgstation/tgstation-server.git
synced 2026-08-29 08:00:19 +01:00
Document ChatResponse
This commit is contained in:
@@ -2,9 +2,19 @@
|
||||
|
||||
namespace Tgstation.Server.Host.Components.Chat
|
||||
{
|
||||
/// <summary>
|
||||
/// Represents a chat message requested by DD
|
||||
/// </summary>
|
||||
sealed class ChatResponse
|
||||
{
|
||||
/// <summary>
|
||||
/// The message string
|
||||
/// </summary>
|
||||
public string Message { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// The list of internal channel ids to send <see cref="Message"/> to
|
||||
/// </summary>
|
||||
public List<long> ChannelIds { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user