Add description field to ConnectionOption object (#271)

This commit is contained in:
Karl Burtram
2017-03-08 14:09:12 -08:00
committed by GitHub
parent 056a08cd1b
commit 666ee98582
2 changed files with 11 additions and 2 deletions

View File

@@ -34,6 +34,8 @@ namespace Microsoft.SqlTools.Hosting.Contracts
public string DisplayName { get; set; }
public string Description {get; set; }
/// <summary>
/// Type of the parameter. Can be either string, number, or category.
/// </summary>
@@ -61,7 +63,7 @@ namespace Microsoft.SqlTools.Hosting.Contracts
/// <summary>
/// Flag to indicate that this option is required
/// </summary>
public bool IsRequired { get; set; }
public bool IsRequired { get; set; }
}
}