ShareX/ShareX.UploadersLib/APIKeys/APIKeys.cs

77 lines
3 KiB
C#

#region License Information (GPL v3)
/*
ShareX - A program that allows you to take screenshots and share any file type
Copyright (C) 2007-2014 ShareX Developers
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 <http://www.gnu.org/licenses/>.
*/
#endregion License Information (GPL v3)
namespace UploadersLib
{
public static partial class APIKeys
{
// Image Uploaders
public static string ImageShackKey = "";
public static string TinyPicID = "";
public static string TinyPicKey = "";
public static string ImgurClientID = "";
public static string ImgurClientSecret = "";
public static string FlickrKey = "";
public static string FlickrSecret = "";
public static string PhotobucketConsumerKey = "";
public static string PhotobucketConsumerSecret = "";
public static string TwitsnapsKey = "";
public static string TwitPicKey = "";
// File Uploaders
public static string DropboxConsumerKey = "";
public static string DropboxConsumerSecret = "";
public static string CopyConsumerKey = "";
public static string CopyConsumerSecret = "";
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 = "";
}
}