namespace VideoBrowser.If { using System; /// /// Defines the /// /// public interface IRange : IEquatable> where T : IComparable { /// /// Gets the End /// T End { get; } /// /// Gets the Start /// T Start { get; } } }