summaryrefslogtreecommitdiff
path: root/Util/VS2010/Chalice/ChaliceLanguageService/Integration/Method.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Util/VS2010/Chalice/ChaliceLanguageService/Integration/Method.cs')
-rw-r--r--Util/VS2010/Chalice/ChaliceLanguageService/Integration/Method.cs20
1 files changed, 20 insertions, 0 deletions
diff --git a/Util/VS2010/Chalice/ChaliceLanguageService/Integration/Method.cs b/Util/VS2010/Chalice/ChaliceLanguageService/Integration/Method.cs
new file mode 100644
index 00000000..c5071612
--- /dev/null
+++ b/Util/VS2010/Chalice/ChaliceLanguageService/Integration/Method.cs
@@ -0,0 +1,20 @@
+using System;
+using System.Collections.Generic;
+
+namespace Demo
+{
+ public struct Method
+ {
+ public string Name;
+ public string Description;
+ public string Type;
+ public IList<Parameter> Parameters;
+ }
+
+ public struct Parameter
+ {
+ public string Name;
+ public string Display;
+ public string Description;
+ }
+} \ No newline at end of file