This repository has been archived on 2026-03-14. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Eco/VideoBrowser/If/IRange.cs
2023-07-24 12:00:34 +02:00

21 lines
457 B
C#

namespace VideoBrowser.If
{
using System;
/// <summary>
/// Defines the <see cref="IRange{T}" />
/// </summary>
/// <typeparam name="T"></typeparam>
public interface IRange<T> : IEquatable<IRange<T>> where T : IComparable<T>
{
/// <summary>
/// Gets the End
/// </summary>
T End { get; }
/// <summary>
/// Gets the Start
/// </summary>
T Start { get; }
}
}