10 lines
316 B
C#
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; }
|
|
} |