2020-01-19 22:41:44 +01:00

18 lines
534 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace Microsoft.eShopOnContainers.WebMVC.ViewModels.Customisation
{
public class ShippingInformation
{
public int ShippingInformationId { get; set; }
public DateTime ArrivalTime { get; set; }
public DateTime ShippingTime { get; set; }
public Priority PriorityLevel { get; set; }
public Fragility FragilityLevel { get; set; }
public String OrderNumber { get; set; }
}
}