public async Task AddRole(string name, string description = "") { Role role = new Role { name = name, description = description }; await BotUtils.AddRoleToDb(role); await BotUtils.ReplyAsync_Success(Context, string.Format("Succesfully created the new role **{0}**.", name)); }