Esempio n. 1
0
        public InstaFarmUser Add(string username, string password)
        {
            var user = new InstaFarmUser(username, password);

            this.Users.Add(user);

            return(user);
        }
Esempio n. 2
0
 public RepostModule(InstaFarmUser user) : base(user)
 {
     this.RepostFrom = new List <string>();
     this.Caption    = new List <string>();
 }
Esempio n. 3
0
 public CommentModule(InstaFarmUser u) : base(u)
 {
     this.Targets  = new List <string>();
     this.Comments = new List <string>();
 }
Esempio n. 4
0
 public FollowLikersModule(InstaFarmUser user, int count) : base(user)
 {
     this.Count   = count;
     this.Sources = new List <string>();
 }
Esempio n. 5
0
 public ModuleBase(InstaFarmUser user)
 {
     this.User   = user;
     this.Logger = new ModuleLogger();
 }