Created
May 21, 2019 14:59
-
-
Save gethari/1cc12b3a7223fc0c83dad99a407ef08e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class PoOrder | |
{ | |
public int ponumber { get; set; } | |
public string name { get; set; } | |
public string sku { get; set; } | |
public double price { get; set; } | |
public int quantity { get; set; } | |
public string messagetype { get; set; } | |
public ShipTo shipTo { get; set; } | |
public BillTo billTo { get; set; } | |
} | |
public class ShipTo | |
{ | |
public string name { get; set; } | |
public string address { get; set; } | |
public string city { get; set; } | |
public string state { get; set; } | |
public string zip { get; set; } | |
} | |
public class BillTo | |
{ | |
public string name { get; set; } | |
public string address { get; set; } | |
public string city { get; set; } | |
public string state { get; set; } | |
public string zip { get; set; } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment