// // Copyright (c) Microsoft. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. // #nullable disable namespace Microsoft.SqlTools.ServiceLayer.Test.Common { /// /// The model to deserialize the server names json /// public class TestServerIdentity { public string ServerName { get; set; } public string ProfileName { get; set; } public TestServerType ServerType { get; set; } } public enum TestServerType { None, Azure, OnPrem } public enum AuthenticationType { Integrated, SqlLogin, AzureMFA } }