main
Line | |
---|
1 | namespace WineTrackerWebApi.Models.Shipment
|
---|
2 | {
|
---|
3 | public class ShipmentBaseDetails
|
---|
4 | {
|
---|
5 | public string ShipmentId { get; set; }
|
---|
6 | public string PaymentStatus { get; set; }
|
---|
7 | public string ShipmentDate { get; set; }
|
---|
8 | public string EmployeeFullName { get; set; }
|
---|
9 | public string VehicleInfo { get; set; }
|
---|
10 | public string NumberOfCustomers { get; set; }
|
---|
11 | public string WineQuantityShipped { get; set; }
|
---|
12 | public string ShipmentBasePrice { get; set; }
|
---|
13 | public string ShipmentAgreedPrice { get; set; }
|
---|
14 | public string ShipmentExpenses { get; set; }
|
---|
15 | public string ShipmentProfit { get; set; }
|
---|
16 | }
|
---|
17 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.