Document ChatResponse

This commit is contained in:
Cyberboss
2018-07-13 11:16:12 -04:00
parent 649effdcc6
commit 0c3aebce62
@@ -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; }
}
}