This commit is contained in:
Tizian.Breuch
2025-07-29 15:06:27 +02:00
parent d4255b8c0d
commit 93a1f2411b
3 changed files with 25 additions and 9 deletions

View File

@@ -22,5 +22,8 @@ namespace Webshop.Application.DTOs.Customers
// Optional, aber gute Sicherheitspraxis: Aktuelles Passwort zur Bestätigung sensibler Änderungen
[Required(ErrorMessage = "Aktuelles Passwort ist zur Bestätigung erforderlich.")]
public string CurrentPassword { get; set; } = string.Empty;
public Guid? DefaultShippingAddressId { get; set; }
public Guid? DefaultBillingAddressId { get; set; }
}
}