20 lines
435 B
C#
20 lines
435 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Ordering.API.Application.Models
|
|
{
|
|
public class CustomerBasket
|
|
{
|
|
public string BuyerId { get; set; }
|
|
public List<BasketItem> Items { get; set; }
|
|
|
|
public CustomerBasket(string customerId)
|
|
{
|
|
BuyerId = customerId;
|
|
Items = new List<BasketItem>();
|
|
}
|
|
}
|
|
}
|