Guest User

Untitled

a guest
Apr 5th, 2016
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. using ProtoBuf;
  2.  
  3. namespace Kronos.Core.StatusCodes
  4. {
  5. [ProtoContract]
  6. public enum RequestStatusCode : ushort
  7. {
  8. [ProtoEnum]
  9. Unknown = 0,
  10.  
  11. [ProtoEnum]
  12. Ok = 1,
  13.  
  14. [ProtoEnum]
  15. Failed = 2,
  16.  
  17. [ProtoEnum]
  18. NotFound = 3,
  19.  
  20. [ProtoEnum]
  21. Deleted = 4
  22. }
  23. }
Advertisement
Add Comment
Please, Sign In to add comment