23 lines
456 B
C#
23 lines
456 B
C#
using Nop.Web.Framework.Models;
|
|
|
|
namespace Nop.Web.Models.Catalog;
|
|
|
|
/// <summary>
|
|
/// Represents a price range model
|
|
/// </summary>
|
|
public partial record PriceRangeModel : BaseNopModel
|
|
{
|
|
#region Properties
|
|
|
|
/// <summary>
|
|
/// Gets or sets the "from" price
|
|
/// </summary>
|
|
public decimal? From { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the "to" price
|
|
/// </summary>
|
|
public decimal? To { get; set; }
|
|
|
|
#endregion
|
|
} |