/// <summary>
 /// Initializes a new instance of the <see cref="Credential" /> class.
 /// </summary>
 /// <param name="Name">Name.</param>
 /// <param name="Type">The type of credential. (required).</param>
 /// <param name="CredentialFields">CredentialFields.</param>
 public Credential(string Name = null, CredentialType Type = null, Dictionary <string, string> CredentialFields = null)
 {
     this.Name             = Name;
     this.Type             = Type;
     this.CredentialFields = CredentialFields;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="CredentialInfo" /> class.
 /// </summary>
 /// <param name="Name">Name.</param>
 /// <param name="Type">Type of the credentials..</param>
 public CredentialInfo(string Name = null, CredentialType Type = null)
 {
     this.Name = Name;
     this.Type = Type;
 }