20 lines
543 B
C#
20 lines
543 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 Customer
|
|||
|
{
|
|||
|
public Guid CustomerId { get; set; }
|
|||
|
public string FirstName { get; set; }
|
|||
|
public string LastName { get; set; }
|
|||
|
public string Email { get; set; }
|
|||
|
public string PasswordHash { get; set; }
|
|||
|
public DateTime CreatedOn { get; set; }
|
|||
|
public ICollection<ShoppingList> ShoppingLists { get; set; }
|
|||
|
}
|
|||
|
}
|