#region License Information (GPL v3) /* ShareX - A program that allows you to take screenshots and share any file type Copyright (c) 2007-2016 ShareX Team This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. Optionally you can also view the license at . */ #endregion License Information (GPL v3) namespace ShareX.UploadersLib { public static partial class APIKeys { // Image Uploaders public static string ImgurClientID = ""; public static string ImgurClientSecret = ""; public static string ImageShackKey = ""; public static string TinyPicID = ""; public static string TinyPicKey = ""; public static string FlickrKey = ""; public static string FlickrSecret = ""; public static string PhotobucketConsumerKey = ""; public static string PhotobucketConsumerSecret = ""; public static string TwitsnapsKey = ""; public static string TwitPicKey = ""; public static string SomeImageKey = ""; public static string SlimgClientID = ""; public static string SlimgClientSecret = ""; // File Uploaders public static string DropboxConsumerKey = ""; public static string DropboxConsumerSecret = ""; public static string CopyConsumerKey = ""; public static string CopyConsumerSecret = ""; public static string HubicClientID = ""; public static string HubicClientSecret = ""; public static string MinusConsumerKey = ""; public static string MinusConsumerSecret = ""; public static string BoxClientID = ""; public static string BoxClientSecret = ""; public static string SendSpaceKey = ""; public static string Ge_ttKey = ""; public static string JiraConsumerKey = ""; public static string MediaFireAppId = ""; public static string MediaFireApiKey = ""; public static string OneDriveClientID = ""; public static string OneDriveClientSecret = ""; // Text Uploaders public static string PastebinKey = ""; public static string PastebinCaKey = ""; public static string GitHubID = ""; public static string GitHubSecret = ""; // URL Shorteners public static string BitlyClientID = ""; public static string BitlyClientSecret = ""; // Other Services public static string GoogleAPIKey = ""; public static string GoogleClientID = ""; public static string GoogleClientSecret = ""; public static string TwitterConsumerKey = ""; public static string TwitterConsumerSecret = ""; public static string OCRSpaceAPIKey = ""; } }