* Removed Unused Usings * Code Refactoring for readbility. Added spaces and moved the classes to separate file
17 lines
308 B
C#
17 lines
308 B
C#
namespace Microsoft.eShopOnContainers.Mobile.Shopping.HttpAggregator.Models
|
|
{
|
|
|
|
public class UpdateBasketItemData
|
|
{
|
|
public string BasketItemId { get; set; }
|
|
|
|
public int NewQty { get; set; }
|
|
|
|
public UpdateBasketItemData()
|
|
{
|
|
NewQty = 0;
|
|
}
|
|
}
|
|
|
|
}
|