Skip to content

Instantly share code, notes, and snippets.

@ankitvijay
Created July 17, 2021 23:02
Show Gist options
  • Select an option

  • Save ankitvijay/348b1117ef165582d5e596ee24f2b50a to your computer and use it in GitHub Desktop.

Select an option

Save ankitvijay/348b1117ef165582d5e596ee24f2b50a to your computer and use it in GitHub Desktop.
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