// src/Webshop.Application/DTOs/Shipping/ShippingCalculationRequestDto.cs using System; using System.Collections.Generic; namespace Webshop.Application.DTOs.Shipping { public class ShippingCalculationRequestDto { public List Items { get; set; } = new(); } }