using System; namespace DelftTools.Utils.ComponentModel { /// /// Used to mark method as a validation method used to check if property value can be set. /// The method should be in the format: bool IsReadOnly(string propertyName) /// /// public class DynamicReadOnlyValidationMethodAttribute : Attribute {} }