tgstation-server  4.4.0
The /tg/station 13 server suite
ChatMessage.cs
Go to the documentation of this file.
1 using System.Collections.Generic;
2 
3 namespace Tgstation.Server.Host.Components.Interop
4 {
8  public sealed class ChatMessage
9  {
13  public string Text { get; set; }
14 
18  public ICollection<string> ChannelIds { get; set; }
19  }
20 }
Represents a message to send to one or more Chat.ChannelRepresentations.
Definition: ChatMessage.cs:8