You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
552 B
20 lines
552 B
using Microsoft.eShopWeb.ApplicationCore.Entities.OrderAggregate;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Microsoft.eShopWeb.Web.ViewModels
|
|
{
|
|
public class OrderViewModel
|
|
{
|
|
public int OrderNumber { get; set; }
|
|
public DateTimeOffset OrderDate { get; set; }
|
|
public decimal Total { get; set; }
|
|
public string Status { get; set; }
|
|
|
|
public Address ShippingAddress { get; set; }
|
|
|
|
public List<OrderItemViewModel> OrderItems { get; set; } = new List<OrderItemViewModel>();
|
|
|
|
}
|
|
|
|
}
|
|
|