Aragas/Bannerlord.MBOptionScreen

View on GitHub
src/MCM.Abstractions/Definitions/IPropertyDefinitionWithMinMax.cs

Summary

Maintainability
A
0 mins
Test Coverage
namespace MCM.Abstractions
{
#if !BANNERLORDMCM_PUBLIC
    internal
#else
    public
# endif
    interface IPropertyDefinitionWithMinMax
    {
        /// <summary>
        /// The minimum value the setting can be set to. Used by the slider control.
        /// </summary>
        decimal MinValue { get; }

        /// <summary>
        /// The maximum value the setting can be set to. Used by the slider control.
        /// </summary>
        decimal MaxValue { get; }
    }
}