Created
April 4, 2016 17:37
-
-
Save lukasz-pyrzyk/d57af02f86a9fecc849ad65db21f89de to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using ProtoBuf; | |
namespace Kronos.Core.Requests | |
{ | |
[ProtoContract] | |
public enum RequestType : ushort | |
{ | |
[ProtoEnum] | |
Unknown = 0, | |
[ProtoEnum] | |
Insert = 1, | |
[ProtoEnum] | |
Get = 2, | |
[ProtoEnum] | |
Delete = 3 | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment