* Removed Unused Usings * Code Refactoring for readbility. Added spaces and moved the classes to separate file
14 lines
294 B
C#
14 lines
294 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Microsoft.eShopOnContainers.Mobile.Shopping.HttpAggregator.Models
|
|
{
|
|
|
|
public class UpdateBasketRequest
|
|
{
|
|
public string BuyerId { get; set; }
|
|
|
|
public IEnumerable<UpdateBasketRequestItemData> Items { get; set; }
|
|
}
|
|
|
|
}
|