summaryrefslogtreecommitdiffstats
path: root/generator/plugins/dotnet/custom/MessageDirection.cs
blob: a2792ff97c2583a07ddbaea267bcb0edf83e7322 (plain)
1
2
3
4
5
6
7
8
using System.Runtime.Serialization;

public enum MessageDirection
{
    [EnumMember(Value = "serverToClient")] ServerToClient,
    [EnumMember(Value = "clientToServer")] ClientToServer,
    [EnumMember(Value = "both")] Both,
}