Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

ShoppingCartItemSearchModel.cs

using Nop.Core.Domain.Orders;
using Nop.Web.Framework.Models;

namespace Nop.Web.Areas.Admin.Models.ShoppingCart;

/// 
/// Represents a shopping cart item search model
/// 
public partial record ShoppingCartItemSearchModel : BaseSearchModel
{
    #region Properties

    public int CustomerId { get; set; }

    public ShoppingCartType ShoppingCartType { get; set; }

    public DateTime? StartDate { get; set; }

    public DateTime? EndDate { get; set; }

    public int ProductId { get; set; }

    public int BillingCountryId { get; set; }

    public int StoreId { get; set; }

    #endregion
}