Skip to content

Instantly share code, notes, and snippets.

@ankitvijay
Created July 17, 2021 23:02
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
Order with schemaversion
public class Order
{
[JsonProperty("id")]
public string Id { get; set; }
public string Name { get; set; }
public OrderStatus OrderStatus { get; set; }
public int SchemaVersion {get; set;}
}
public enum OrderStatus
{
Started,
Processed,
Shipped,
Completed
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment