-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPoOrder.cs
More file actions
28 lines (27 loc) · 758 Bytes
/
PoOrder.cs
File metadata and controls
28 lines (27 loc) · 758 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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; }
}