Try your search with a different keyword or use * as a wildcard.
using Microsoft.AspNetCore.Mvc.Rendering;
using Nop.Web.Framework.Models;
using Nop.Web.Framework.Mvc.ModelBinding;
namespace Nop.Web.Areas.Admin.Models.Catalog;
///
/// Represents a stock quantity history search model
///
public partial record StockQuantityHistorySearchModel : BaseSearchModel
{
#region Ctor
public StockQuantityHistorySearchModel()
{
AvailableWarehouses = new List();
}
#endregion
#region Properties
public int ProductId { get; set; }
[NopResourceDisplayName("Admin.Catalog.Products.List.SearchWarehouse")]
public int WarehouseId { get; set; }
public IList AvailableWarehouses { get; set; }
#endregion
}