tgstation-server
The /tg/station 13 server suite
Response.cs
Go to the documentation of this file.
1 using System.Collections.Generic;
2 
3 namespace Tgstation.Server.Host.Components.Chat
4 {
8  sealed class Response
9  {
13  public string Message { get; set; }
14 
18  public List<ulong> ChannelIds { get; set; }
19  }
20 }
Represents a chat message requested by DD
Definition: Response.cs:8