//
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
//
namespace Microsoft.SqlTools.EditorServices
{
///
/// Contains details relating to a content change in an open file.
///
public class FileChange
{
///
/// The string which is to be inserted in the file.
///
public string InsertString { get; set; }
///
/// The 1-based line number where the change starts.
///
public int Line { get; set; }
///
/// The 1-based column offset where the change starts.
///
public int Offset { get; set; }
///
/// The 1-based line number where the change ends.
///
public int EndLine { get; set; }
///
/// The 1-based column offset where the change ends.
///
public int EndOffset { get; set; }
}
}