18 lines
447 B
C#
18 lines
447 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Weifer.Database.EF.Entitys
|
|
{
|
|
public class ShoppingItem
|
|
{
|
|
public Guid ShoppingItemId { get; set; }
|
|
public Guid ShoppingListId { get; set; }
|
|
public string Description { get; set; }
|
|
public int Number { get; set; } = 0;
|
|
public bool Purchased { get; set; } = false;
|
|
}
|
|
}
|