9 lines
127 B
C#
9 lines
127 B
C#
|
|
namespace zero.Utils;
|
||
|
|
|
||
|
|
public class PriceRange
|
||
|
|
{
|
||
|
|
public decimal? From { get; set; }
|
||
|
|
|
||
|
|
public decimal? To { get; set; }
|
||
|
|
}
|