2using System.Collections.Generic;
17 public IEnumerable<ChannelRepresentation>
Channels {
get; }
23 public ChatUpdate(IEnumerable<ChannelRepresentation> channels)
25 Channels = channels?.ToList() ??
throw new ArgumentNullException(nameof(channels));
Represents an update of ChannelRepresentations.
IEnumerable< ChannelRepresentation > Channels
The IEnumerable<T> of ChannelRepresentations.
ChatUpdate(IEnumerable< ChannelRepresentation > channels)
Initializes a new instance of the ChatUpdate class.