This commit is contained in:
Tizian.Breuch
2025-08-12 13:32:25 +02:00
parent 3d206eda4e
commit f91fc13a87
8 changed files with 290 additions and 21 deletions

View File

@@ -1,8 +1,6 @@
// Auto-generiert von CreateWebshopFiles.ps1
// src/Webshop.Application/DTOs/Orders/CreateOrderDto.cs
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
namespace Webshop.Application.DTOs.Orders
{
@@ -15,6 +13,9 @@ namespace Webshop.Application.DTOs.Orders
public Guid BillingAddressId { get; set; }
public Guid PaymentMethodId { get; set; }
public Guid ShippingMethodId { get; set; }
public string? CouponCode { get; set; } // << NEU >>
public List<CreateOrderItemDto> Items { get; set; } = new List<CreateOrderItemDto>();
}
}
}