DocSpace-client/thirdparty/AppLimit.CloudComputing.SharpBox/StorageProvider/DropBox/DropBoxBaseTokenInformation.cs
2020-03-13 16:40:58 +03:00

22 lines
650 B
C#

using System;
namespace AppLimit.CloudComputing.SharpBox.StorageProvider.DropBox
{
/// <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; }
}
}