18 lines
491 B
C#
18 lines
491 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Microsoft.eShopOnContainers.Web.Shopping.HttpAggregator.Models
|
|
{
|
|
public class OrderItemData
|
|
{
|
|
public int ProductId { get; set; }
|
|
public string ProductName { get; set; }
|
|
public decimal UnitPrice { get; set; }
|
|
public decimal Discount { get; set; }
|
|
public int Units { get; set; }
|
|
public string PictureUrl { get; set; }
|
|
}
|
|
}
|