extracted imgur credentials to another class

git-svn-id: http://svn.code.sf.net/p/greenshot/code/trunk@2047 7dccd23d-a4a3-4e1f-8c07-b4c1b4018ab4
This commit is contained in:
JKlingen 2012-09-16 22:09:26 +00:00
commit ef4b1344e5
3 changed files with 28 additions and 5 deletions

View file

@ -0,0 +1,12 @@
using System;
namespace GreenshotImgurPlugin {
/// <summary>
/// This class is merely a placeholder for the file keeping the API key and secret for imgur integration.
/// Copy this file to ImgurCredentials.private.cs and fill in valid credentials. (Or empty strings, but of course you won't be able to use the Imgur plugin then.)
/// </summary>
public static class ImgurCredentials {
public static string CONSUMER_KEY = empty;
public static string CONSUMER_SECRET = empty;
}
}