source: WineTrackerFinal/WineTrackerWebApi/Models/Shipment/AddCustomerToShipment.cs@ 04008ae

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: 208 bytes
Line 
1namespace WineTrackerWebApi.Models.Shipment
2{
3 public class AddCustomerToShipment
4 {
5 public string CustomerId { get; set; }
6 public List<AddWineToShipment> Wines { get; set; }
7 }
8}
Note: See TracBrowser for help on using the repository browser.