16 lines
385 B
C#
16 lines
385 B
C#
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Threading.Tasks;
|
||
|
|
||
|
namespace API.Dtos
|
||
|
{
|
||
|
public class OrderItemDto
|
||
|
{
|
||
|
public int ProductId { get; set; }
|
||
|
public string ProductName { get; set; }
|
||
|
public string PictureUrl { get; set; }
|
||
|
public decimal Price { get; set; }
|
||
|
public int Quantity { get; set; }
|
||
|
}
|
||
|
}
|