ChannelEnumerateReply

- Added constructor with arguments
This commit is contained in:
Tristan B. Velloza Kildaire 2023-11-10 13:38:01 +02:00
parent 026805e644
commit 6fe2b691fb
1 changed files with 6 additions and 0 deletions

View File

@ -49,6 +49,12 @@ public final class ChannelEnumerateReply : Command
registerClass!(typeof(this));
}
this(string[] channels)
{
this();
setChannels(channels);
}
public void setChannels(string[] channels)
{
this.channels = channels;