summaryrefslogtreecommitdiffstats
path: root/generator/plugins/dotnet/custom/LSPResponse.cs
diff options
context:
space:
mode:
Diffstat (limited to 'generator/plugins/dotnet/custom/LSPResponse.cs')
-rw-r--r--generator/plugins/dotnet/custom/LSPResponse.cs13
1 files changed, 13 insertions, 0 deletions
diff --git a/generator/plugins/dotnet/custom/LSPResponse.cs b/generator/plugins/dotnet/custom/LSPResponse.cs
new file mode 100644
index 0000000..4d2ca46
--- /dev/null
+++ b/generator/plugins/dotnet/custom/LSPResponse.cs
@@ -0,0 +1,13 @@
+using System;
+
+[AttributeUsage(AttributeTargets.Class)]
+public class LSPResponseAttribute : Attribute
+{
+ public LSPResponseAttribute(Type request)
+ {
+ Request = request;
+ }
+
+
+ public Type Request { get; }
+} \ No newline at end of file