16 lines
296 B
C#
16 lines
296 B
C#
namespace API.Models.ShoppingListModels
|
|
{
|
|
public class ShoppingList
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public double Amount { get; set; }
|
|
|
|
public string Unit { get; set; }
|
|
|
|
public string Name { get; set; }
|
|
|
|
public bool Checked { get; set; }
|
|
}
|
|
}
|