// // Copyright (c) Microsoft. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. // using Microsoft.SqlTools.Hosting.Protocol.Contracts; namespace Microsoft.SqlTools.ServiceLayer.EditData.Contracts { public class EditSessionReadyParams { /// /// URI for the editor /// public string OwnerUri { get; set; } /// /// Whether or not the session is ready /// public bool Success { get; set; } } public class EditSessionReadyEvent { public static readonly EventType Type = EventType.Create("edit/sessionReady"); } }