namespace AppLimit.CloudComputing.SharpBox.StorageProvider.DropBox { /// /// The base class of all credentials /// public class DropBoxBaseTokenInformation { /// /// ConsumerKey of the DropBox application, provided by the /// DropBox-Developer-Portal /// public string ConsumerKey { get; set; } /// /// ConsumerSecret of the DropBox application, provided by the /// DropBox-Developer-Portal /// public string ConsumerSecret { get; set; } } }