Try your search with a different keyword or use * as a wildcard.
using Nop.Web.Framework.Models;
namespace Nop.Web.Models.Catalog;
///
/// Represents a price range model
///
public partial record PriceRangeModel : BaseNopModel
{
#region Properties
///
/// Gets or sets the "from" price
///
public decimal? From { get; set; }
///
/// Gets or sets the "to" price
///
public decimal? To { get; set; }
#endregion
}