21 lines
451 B
C#
21 lines
451 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Microsoft.eShopOnContainers.Mobile.Shopping.HttpAggregator.Models
|
|
{
|
|
public class AddBasketItemRequest
|
|
{
|
|
public int CatalogItemId { get; set; }
|
|
public string BasketId { get; set; }
|
|
|
|
public int Quantity { get; set; }
|
|
|
|
public AddBasketItemRequest()
|
|
{
|
|
Quantity = 1;
|
|
}
|
|
}
|
|
}
|