mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-21 17:28:00 +02:00
9 lines
147 B
Beef
9 lines
147 B
Beef
![]() |
namespace System
|
||
|
{
|
||
|
interface IMinMaxValue<T>
|
||
|
{
|
||
|
public static T MinValue { get; }
|
||
|
public static T MaxValue { get; }
|
||
|
}
|
||
|
}
|