ASPNetCore/TestAppRuna.Entities/Customer.cs

17 lines
374 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace TestAppRuna.Entities
{
public class Customer
{
public Guid CustomerID { get; set; }
public string Name { get; set; }
public string Email { get; set; }
public ICollection<Cart> Carts { get; set; }
}
}