using System; namespace Core.Common.Utils.Attributes { /// /// 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 {} }