using System; namespace Deltares.Standard.Specifications { [AttributeUsage(AttributeTargets.Property | AttributeTargets.Field, Inherited = false, AllowMultiple = true)] public sealed class MinimumAttribute : Attribute { private readonly double attributeValue; public MinimumAttribute(double minValue) { this.attributeValue = minValue; } public double AttributeValue { get { return this.attributeValue; } } } }