12 lines
162 B
C#
12 lines
162 B
C#
using System;
|
|
|
|
namespace zero.Core.Entities
|
|
{
|
|
public class PriceRange
|
|
{
|
|
public decimal? From { get; set; }
|
|
|
|
public decimal? To { get; set; }
|
|
}
|
|
}
|