summaryrefslogtreecommitdiffstats
path: root/generator/plugins/dotnet/custom/LSPResponse.cs
blob: 4d2ca46fa0bbe47ca45b468540d35abaf21ea243 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
using System;

[AttributeUsage(AttributeTargets.Class)]
public class LSPResponseAttribute : Attribute
{
    public LSPResponseAttribute(Type request)
    {
        Request = request;
    }


    public Type Request { get; }
}