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