Advertisement
Guest User

Untitled

a guest
Feb 24th, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. public enum WorkStatus
  2. {
  3. [EnumMember(Value = "In Progress")]
  4. InProgress = 0,
  5. [EnumMember(Value = "Nicely done")]
  6. Completed = 1,
  7. }
  8.  
  9. public class Foo
  10. {
  11. [JsonConverter(typeof(StringEnumConverter))] //Newtonsoft.Json
  12. public WorkStatus Status { get; set; }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement