using System; using System.Collections.Generic; using System.Text; namespace FastReport.Cloud.StorageClient.SkyDrive { /// /// Represents the information about SkyDrive application. /// public class ClientInfo { #region Fields private string name; #pragma warning disable FR0001 // Field names must be longer than 2 characters. private string id; #pragma warning restore FR0001 // Field names must be longer than 2 characters. private string secret; #endregion // Fields #region Properties /// /// Gets or sets the client name. /// public string Name { get { return name; } set { name = value; } } /// /// Gets or sets the client ID. /// public string Id { get { return id; } set { id = value; } } /// /// Gets or sets the client secret. /// public string Secret { get { return secret; } set { secret = value; } } #endregion // Properties #region Constructors /// /// Initializes a new instance of the class. /// /// The client name. /// The client ID. /// The client secret. public ClientInfo(string name, string id, string secret) { this.name = name; this.id = id; this.secret = secret; } #endregion // Constructors } }