using System.Collections.Generic; namespace Microsoft.eShopOnContainers.Mobile.Shopping.HttpAggregator.Models { public class UpdateBasketRequest { public string BuyerId { get; set; } public IEnumerable Items { get; set; } } }