drinkMe/drinkMe/Shared/CartItem.cs
Eugenio Chiodo f537d097ec Init
2021-04-26 15:35:44 +02:00

15 lines
263 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace drinkMe.Shared
{
public class CartItem
{
public int Id { get; set; }
public int Quantity { get; set; } = 1;
}
}