namespace WineTrackerWebApi.Models.Shipment { public class ShipmentCustomerDetails { public string CustomerName { get; set; } public string CustomerAddress { get; set; } public string WineName { get; set; } public string WineBasePrice { get; set; } public string WineAgreedPrice { get; set; } public string WineQuantity { get; set; } } }