Webiant Logo Webiant Logo
  1. No results found.

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

PriceRangeModel.cs

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
}