summaryrefslogtreecommitdiffstats
path: root/generator/plugins/dotnet/custom/MessageDirection.cs
diff options
context:
space:
mode:
Diffstat (limited to 'generator/plugins/dotnet/custom/MessageDirection.cs')
-rw-r--r--generator/plugins/dotnet/custom/MessageDirection.cs8
1 files changed, 8 insertions, 0 deletions
diff --git a/generator/plugins/dotnet/custom/MessageDirection.cs b/generator/plugins/dotnet/custom/MessageDirection.cs
new file mode 100644
index 0000000..a2792ff
--- /dev/null
+++ b/generator/plugins/dotnet/custom/MessageDirection.cs
@@ -0,0 +1,8 @@
+using System.Runtime.Serialization;
+
+public enum MessageDirection
+{
+ [EnumMember(Value = "serverToClient")] ServerToClient,
+ [EnumMember(Value = "clientToServer")] ClientToServer,
+ [EnumMember(Value = "both")] Both,
+} \ No newline at end of file