dorset-backend-2/Shop/DTO/CustomerOrderListDTO.cs

10 lines
173 B
C#

using System.Collections.Generic;
namespace Shop.DTO
{
public class CustomerOrderListDTO : CustomerDTO
{
public List<OrderDTO> Orders { get; set; }
}
}