Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ITag.cs « Tagging « TextLogic « Def « Text « src - github.com/microsoft/vs-editor-api.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 21fe434171b8a6cc4d2cc494fc0b17bd2694bee0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
//
//  Copyright (c) Microsoft Corporation. All rights reserved.
//  Licensed under the MIT License. See License.txt in the project root for license information.
//
namespace Microsoft.VisualStudio.Text.Tagging
{
    /// <summary>
    /// The base interface of all tags.
    /// </summary>
    public interface ITag
    {
    }
}