示例#1
0
 private GuildSettings(string guildId, string commandPrefix, TwitchSettings twitchSettings, List <CustomCommand> customCommands, bool streamMessages)
 {
     GuildId         = guildId;
     CommandPrefix   = commandPrefix;
     TwitchSettings  = twitchSettings;
     _customCommands = customCommands;
     StreamMessages  = streamMessages;
 }
示例#2
0
 public void SetTwitchChannel(string channelName, string userId)
 {
     TwitchSettings = new TwitchSettings(userId, channelName);
 }