mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-21 09:27:59 +02:00
8 lines
147 B
Beef
8 lines
147 B
Beef
namespace System
|
|
{
|
|
interface IMinMaxValue<T>
|
|
{
|
|
public static T MinValue { get; }
|
|
public static T MaxValue { get; }
|
|
}
|
|
}
|