namespace AfterHours.Customers { /// Ein Artikel im Einkaufskorb eines Kunden. Nur serverseitig. public readonly struct BasketLine { public readonly int ProductId; public readonly float Price; public BasketLine(int productId, float price) { ProductId = productId; Price = price; } } }