Esempio n. 1
0
 ///grabs and notes all the data for the user for reference
 //
 //Can add database support here if the feature is wanted in the future//
 //
 public TwitchUser(TwitchUser user)
     : this(user.displayName, user.id, user.createdAt,
     user.updatedAt, user.logo, user.bio)
 {
 }
Esempio n. 2
0
 public TwitchBot(TwitchUser user, string oauthPassword)
 {
     _user = user;
     _oauthPassword = oauthPassword;
 }