tgstation-server
6.12.0
The /tg/station 13 server suite
Loading...
Searching...
No Matches
src
Tgstation.Server.Host
Components
Interop
ChatUpdate.cs
Go to the documentation of this file.
1
using
System;
2
using
System.Collections.Generic;
3
using
System.Linq;
4
5
using
Tgstation.Server.Host.Components.Chat
;
6
7
namespace
Tgstation.Server.Host.Components.Interop
8
{
12
public
class
ChatUpdate
13
{
17
public
IEnumerable<ChannelRepresentation>
Channels
{
get
; }
18
23
public
ChatUpdate
(IEnumerable<ChannelRepresentation> channels)
24
{
25
Channels
= channels?.ToList() ??
throw
new
ArgumentNullException(nameof(channels));
26
}
27
}
28
}
Tgstation.Server.Host.Components.Interop.ChatUpdate
Represents an update of ChannelRepresentations.
Definition
ChatUpdate.cs:13
Tgstation.Server.Host.Components.Interop.ChatUpdate.Channels
IEnumerable< ChannelRepresentation > Channels
The IEnumerable<T> of ChannelRepresentations.
Definition
ChatUpdate.cs:17
Tgstation.Server.Host.Components.Interop.ChatUpdate.ChatUpdate
ChatUpdate(IEnumerable< ChannelRepresentation > channels)
Initializes a new instance of the ChatUpdate class.
Definition
ChatUpdate.cs:23
Tgstation.Server.Host.Components.Chat
Definition
ChannelMapping.cs:4
Tgstation.Server.Host.Components.Interop
Definition
BridgeCommandType.cs:2
Generated by
1.9.8