DocSpace-buildtools/thirdparty/AppLimit.CloudComputing.SharpBox/StorageProvider/DropBox/DropBoxBaseTokenInformation.cs

20 lines
633 B
C#
Raw Normal View History

2020-04-23 09:38:50 +00:00
namespace AppLimit.CloudComputing.SharpBox.StorageProvider.DropBox
2020-03-13 13:40:58 +00:00
{
/// <summary>
/// The base class of all credentials
/// </summary>
public class DropBoxBaseTokenInformation
{
/// <summary>
/// ConsumerKey of the DropBox application, provided by the
/// DropBox-Developer-Portal
/// </summary>
public string ConsumerKey { get; set; }
/// <summary>
/// ConsumerSecret of the DropBox application, provided by the
/// DropBox-Developer-Portal
/// </summary>
public string ConsumerSecret { get; set; }
}
}