using System;
namespace HeuristicLab.JsonInterface {
///
/// Interface to get a interval restrict JsonItems.
///
///
public interface IIntervalRestrictedJsonItem : IJsonItem
where T : IComparable {
///
/// The allowed minimum of the JsonItem.
///
T Minimum { get; set; }
///
/// The allowed maximum of the JsonItem.
///
T Maximum { get; set; }
}
}