using System; namespace Abp.Runtime.Validation { /// /// Can be added to a method to disable auto validation. /// [AttributeUsage(AttributeTargets.Method | AttributeTargets.Class | AttributeTargets.Property)] public class DisableValidationAttribute : Attribute { } }