Sky.Net/API/Dtos/OrderItemDto.cs

16 lines
385 B
C#
Raw Normal View History

2022-05-24 15:35:03 -07:00
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; }
}
}