* Removed Unused Usings * Code Refactoring for readbility. Added spaces and moved the classes to separate file
12 lines
327 B
C#
12 lines
327 B
C#
namespace Microsoft.eShopOnContainers.Web.Shopping.HttpAggregator.Models
|
|
{
|
|
public class UpdateBasketRequestItemData
|
|
{
|
|
public string Id { get; set; } // Basket id
|
|
|
|
public int ProductId { get; set; } // Catalog item id
|
|
|
|
public int Quantity { get; set; } // Quantity
|
|
}
|
|
}
|