Stable running home page with product view
continuous-integration/drone/pr Build is passing

This commit is contained in:
Khwezi Mngoma
2026-05-30 19:06:14 +02:00
parent f2ff7e3647
commit 7a1a7566d6
9 changed files with 615 additions and 389 deletions
-12
View File
@@ -1,12 +0,0 @@
namespace MidrandBookshop.Models;
public class BookItem
{
public long Id { get; set; } // Refactored to hold unique record indices of type long
public string Title { get; set; } = string.Empty;
public string Author { get; set; } = string.Empty;
public decimal Price { get; set; }
public string Category { get; set; } = string.Empty;
public bool IsNew { get; set; }
public string Isbn { get; set; } = string.Empty;
}