-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathConfig.cs
25 lines (21 loc) · 945 Bytes
/
Config.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
namespace DominosDiscord
{
public static class Config
{
// Get a token at https://discordapp.com/developers/applications/me
public static string DiscordToken = "";
// YOUR personal Discord Id (only person allowed to use the commands)
public static ulong DiscordCustomerId = 354458973572956160;
public static string PhoneNumber = "000000000"; // No Slashes
public static string Email = "[email protected]";
public static string StreetAddress = "69 Nice Street";
public static string City = "City Name";
public static string State = "TX";
public static string ZipCode = "000000";
// No slashes or dashes
public static long CreditCardNumber = 1111111111111111;
public static string CreditCardExpiration = "0000";
public static int CreditCardSecurityCode = 000;
public static int CreditCardBillingZipCode = 00000;
}
}