initial
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
namespace AfterHours.Customers
|
||||
{
|
||||
/// <summary>Ein Artikel im Einkaufskorb eines Kunden. Nur serverseitig.</summary>
|
||||
public readonly struct BasketLine
|
||||
{
|
||||
public readonly int ProductId;
|
||||
public readonly float Price;
|
||||
|
||||
public BasketLine(int productId, float price)
|
||||
{
|
||||
ProductId = productId;
|
||||
Price = price;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user