<PackageReference Include="System.ComponentModel.Annotations" Version="5.0.0-rc.2.20475.5" />

System.ComponentModel.DataAnnotations.RangeAttribute

namespace System.ComponentModel.DataAnnotations { public class RangeAttribute : ValidationAttribute { public object Minimum { get; } public object Maximum { get; } public Type OperandType { get; } public RangeAttribute(int minimum, int maximum); public RangeAttribute(double minimum, double maximum); public RangeAttribute(Type type, string minimum, string maximum); } }