Try your search with a different keyword or use * as a wildcard.
using Nop.Web.Framework.Models;
namespace Nop.Web.Areas.Admin.Models.Reports;
///
/// Represents a customer reports search model
///
public partial record CustomerReportsSearchModel : BaseSearchModel
{
#region Ctor
public CustomerReportsSearchModel()
{
BestCustomersByOrderTotal = new BestCustomersReportSearchModel();
BestCustomersByNumberOfOrders = new BestCustomersReportSearchModel();
RegisteredCustomers = new RegisteredCustomersReportSearchModel();
}
#endregion
#region Properties
public BestCustomersReportSearchModel BestCustomersByOrderTotal { get; set; }
public BestCustomersReportSearchModel BestCustomersByNumberOfOrders { get; set; }
public RegisteredCustomersReportSearchModel RegisteredCustomers { get; set; }
#endregion
}