Sky.Net/API/Dtos/OrderItemDto.cs
Charles Showalter 344ecb8762 Added Order API
2022-05-24 15:35:03 -07:00

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; }
}
}