// // Copyright (c) Microsoft. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. // #nullable disable using System.Collections.Generic; using Microsoft.SqlTools.Hosting.Protocol.Contracts; namespace Microsoft.SqlTools.ServiceLayer.DisasterRecovery.Contracts { public class RestoreConfigInfoRequestParams { /// /// The Uri to find the connection to do the restore operations /// public string OwnerUri { get; set; } } public class RestoreConfigInfoResponse { public RestoreConfigInfoResponse() { ConfigInfo = new Dictionary(); } /// /// Config Info /// public Dictionary ConfigInfo { get; set; } /// /// Errors occurred while creating the restore config info /// public string ErrorMessage { get; set; } } public class RestoreConfigInfoRequest { public static readonly RequestType Type = RequestType.Create("restore/restoreconfiginfo"); } }