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