17 lines
419 B
C#
17 lines
419 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 ShoppingList
|
|
{
|
|
public Guid ShoppingListId { get; set; }
|
|
public Guid CustomerId { get; set; }
|
|
public string ShoppingListName { get; set; }
|
|
public ICollection<ShoppingItem> ShoppingItems { get; set; }
|
|
}
|
|
}
|