Skip to content

Instantly share code, notes, and snippets.

@lukasz-pyrzyk
Created April 4, 2016 17:51
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/5c483883086cb9b37de4e2b8ad318088 to your computer and use it in GitHub Desktop.
Save lukasz-pyrzyk/5c483883086cb9b37de4e2b8ad318088 to your computer and use it in GitHub Desktop.
using ProtoBuf;
namespace Kronos.Core.StatusCodes
{
[ProtoContract]
public enum RequestStatusCode : ushort
{
[ProtoEnum]
Unknown = 0,
[ProtoEnum]
Ok = 1,
[ProtoEnum]
Failed = 2,
[ProtoEnum]
NotFound = 3,
[ProtoEnum]
Deleted = 4
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment