StoreWebApi: OrderDetailDTO.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Threading.Tasks; | |
namespace StoreWebApi.DTOs | |
{ | |
public class OrderDetailDTO | |
{ | |
public int CustomerOrderId { get; set; } | |
public int ProductId { get; set; } | |
public int Quantity { get; set; } | |
public decimal Amount { get; set; } | |
public CustomerOrderDTO CustomerOrder { get; set; } | |
public ProductDTO Product { get; set; } | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment