source:
WineTrackerFinal/WineTrackerWebApi/Models/Shipment/AddShipment.cs
Last change on this file was 17d6948, checked in by , 6 days ago | |
---|---|
|
|
File size: 348 bytes |
Line | |
---|---|
1 | namespace WineTrackerWebApi.Models.Shipment |
2 | { |
3 | public class AddShipment |
4 | { |
5 | public string ShipmentId { get; set; } |
6 | public string ShipmentDate { get; set; } |
7 | public string EmployeeId { get; set; } |
8 | public string VehicleId { get; set; } |
9 | public List<AddCustomerToShipment> Customers { get; set; } |
10 | } |
11 | } |
Note:
See TracBrowser
for help on using the repository browser.