using System; using System.Collections.Generic; using System.Text; namespace FastReport.Cloud.OAuth { /// /// Represents the OAuth token credentials. /// public class Token { #region Fields private string tokenKey; private string tokenSecret; #endregion // Fields #region Properties /// /// Gets the token key. /// public string TokenKey { get { return tokenKey; } set { tokenKey = value; } } /// /// Gets the token secret. /// public string TokenSecret { get { return tokenSecret; } set { tokenSecret = value; } } #endregion //Properties #region Constructors /// /// Initializes a new instance of the class. /// /// The token key. /// The token secret. public Token(string tokenKey, string tokenSecret) { this.tokenKey = tokenKey; this.tokenSecret = tokenSecret; } #endregion // Constructors } }