using System; namespace Core.Common.Utils.ComponentModel { /// /// Used to mark method as a validation method used to check if property /// should be used or not. The method should be in the format: /// bool IsVisible(string propertyName) /// /// public class DynamicVisibleValidationMethodAttribute : Attribute {} }