Files
midrandbooks/MidrandBookshop/Components/Layout/CartItem.cs
T
Khwezi Mngoma 01a0264452
continuous-integration/drone/pr Build is passing
Working search
2026-05-30 21:00:13 +02:00

10 lines
316 B
C#

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; }
}