diff --git a/MidrandBookshop/Components/Layout/CartItem.cs b/MidrandBookshop/Components/Layout/CartItem.cs deleted file mode 100644 index 93278d3..0000000 --- a/MidrandBookshop/Components/Layout/CartItem.cs +++ /dev/null @@ -1,10 +0,0 @@ -namespace MidrandBookshop.Components.Layout; - -public class CartItem - { - public int Id { get; set; } - public string Title { get; set; } = string.Empty; - public string Author { get; set; } = string.Empty; - public int Price { get; set; } - public int Quantity { get; set; } - } \ No newline at end of file diff --git a/MidrandBookshop/Components/Pages/Home.razor b/MidrandBookshop/Components/Pages/Home.razor index 5c4f1c7..f57bb0e 100644 --- a/MidrandBookshop/Components/Pages/Home.razor +++ b/MidrandBookshop/Components/Pages/Home.razor @@ -1,7 +1,9 @@ @page "/" @rendermode InteractiveServer -