source:
WineTrackerFinal/WineTrackerWebApi/Models/Shipment/ShipmentCustomerDetails.cs
Last change on this file was 17d6948, checked in by , 6 days ago | |
---|---|
|
|
File size: 401 bytes |
Line | |
---|---|
1 | namespace WineTrackerWebApi.Models.Shipment |
2 | { |
3 | public class ShipmentCustomerDetails |
4 | { |
5 | public string CustomerName { get; set; } |
6 | public string CustomerAddress { get; set; } |
7 | public string WineName { get; set; } |
8 | public string WineBasePrice { get; set; } |
9 | public string WineAgreedPrice { get; set; } |
10 | public string WineQuantity { get; set; } |
11 | } |
12 | } |
Note:
See TracBrowser
for help on using the repository browser.