main
Last change
on this file since 04008ae was 17d6948, checked in by Nikola Mishevski <Nikola.Mishevski@…>, 6 days ago |
initial commit WineTracker Project
|
-
Property mode
set to
100644
|
File size:
422 bytes
|
Line | |
---|
1 | namespace WineTrackerWebApi.Models.Shipment
|
---|
2 | {
|
---|
3 | public class Shipment
|
---|
4 | {
|
---|
5 | public string ShipmentId { get; set; }
|
---|
6 | public int PaymentId { get; set; }
|
---|
7 | public int PaymentStatus { get; set; }
|
---|
8 | public string ShipmentDate { get; set; }
|
---|
9 | public string Customers { get; set; }
|
---|
10 | public string EmployeeFullName { get; set; }
|
---|
11 | public string VehicleInfo { get; set; }
|
---|
12 | }
|
---|
13 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.