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