Created
October 7, 2018 17:54
-
-
Save icebeam7/18ecf35855d4b3db5bb27fe5c2f7a2b5 to your computer and use it in GitHub Desktop.
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