Viswanatha Swamy 736320b920
Swamy/remove unused using and refactoring entity classes (#1371)
* Removed Unused Usings

* Code Refactoring for readbility. Added spaces and moved the classes to separate file
2020-08-04 16:26:29 +05:30

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; }
}
}