Advertisement
Guest User

Untitled

a guest
Jan 2nd, 2017
275
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.01 KB | None | 0 0
  1. //Parameters.cs
  2.  
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8.  
  9. namespace memenumberbot {
  10.     class Parameters {
  11.         // Customize here
  12.         // ----------------------------------------------
  13.         private const string _username = "USER";
  14.         private const string _password = "PASSWORD";
  15.         private const string _subreddit = "SUBREDDIT";
  16.         private const int _maxGet = 50;
  17.         //private const bool _modsGetDubs = true;
  18.         private const int _waitForRerun = 60;
  19.         private const int _numberLength = 8;
  20.         // ----------------------------------------------
  21.  
  22.  
  23.  
  24.  
  25.         public string Username => _username;
  26.         public string Password => _password;
  27.         public string Subreddit => _subreddit;
  28.         public int MaxGet => _maxGet;
  29.         //public bool ModsGetDubs => _modsGetDubs;
  30.         public int WaitForRerun => _waitForRerun;
  31.         public int NumberLength => _numberLength;
  32.     }
  33. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement