Пример #1
0
 public Clara(Config config)
 {
     this.config = config;
     this.scene = new Scenes();
     this.jobs = new Jobs();
     this.user = new User();
 }
Пример #2
0
 public Clara(string username, string apiToken, string host)
 {
     this.config = new Config();
     config.initializeConfig();
     config.SetConfig("username", username);
     config.SetConfig("apiToken", apiToken);
     config.SetConfig("host", host);
     this.scene = new Scenes();
     this.jobs = new Jobs();
     this.user = new User();
 }