// // Copyright (c) Microsoft. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. // namespace Microsoft.Kusto.ServiceLayer.Connection.Contracts { /// /// Parameters for the Get Connection String Request. /// public class GetConnectionStringParams { /// /// URI of the owner of the connection /// public string OwnerUri { get; set; } /// /// Indicates whether the password should be return in the connection string /// public bool IncludePassword { get; set; } } }