13 lines
298 B
C#
13 lines
298 B
C#
// src/Webshop.Application/DTOs/Shipping/ShippingCalculationRequestDto.cs
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Webshop.Application.DTOs.Shipping
|
|
{
|
|
public class ShippingCalculationRequestDto
|
|
{
|
|
public List<CartItemDto> Items { get; set; } = new();
|
|
}
|
|
|
|
|
|
} |