Projektdateien hinzufügen.
This commit is contained in:
21
VideoBrowser/If/IRange.cs
Normal file
21
VideoBrowser/If/IRange.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user