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.
19 lines
535 B
19 lines
535 B
using Microsoft.eShopWeb.ApplicationCore.Entities;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
|
|
namespace Microsoft.eShopWeb.ViewModels
|
|
{
|
|
|
|
public class BasketItemViewModel
|
|
{
|
|
public string Id { get; set; }
|
|
public string ProductId { get; set; }
|
|
public string ProductName { get; set; }
|
|
public decimal UnitPrice { get; set; }
|
|
public decimal OldUnitPrice { get; set; }
|
|
public int Quantity { get; set; }
|
|
public string PictureUrl { get; set; }
|
|
}
|
|
}
|
|
|