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