17 lines
363 B
C#
17 lines
363 B
C#
namespace MicoService.Demo.DTOs
|
|
{
|
|
|
|
|
|
public class OrderItemResponseDto
|
|
{
|
|
public int Id { get; set; }
|
|
public string ProductId { get; set; }
|
|
public string ProductName { get; set; }
|
|
public int Quantity { get; set; }
|
|
public decimal UnitPrice { get; set; }
|
|
public decimal Subtotal { get; set; }
|
|
}
|
|
|
|
|
|
}
|