Skip to content

Instantly share code, notes, and snippets.

@lukasz-pyrzyk
Created April 4, 2016 17:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lukasz-pyrzyk/d57af02f86a9fecc849ad65db21f89de to your computer and use it in GitHub Desktop.
Save lukasz-pyrzyk/d57af02f86a9fecc849ad65db21f89de to your computer and use it in GitHub Desktop.
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