DisableValidationAttribute.cs 325 B

12345678910111213
  1. using System;
  2. namespace Abp.Runtime.Validation
  3. {
  4. /// <summary>
  5. /// Can be added to a method to disable auto validation.
  6. /// </summary>
  7. [AttributeUsage(AttributeTargets.Method | AttributeTargets.Class | AttributeTargets.Property)]
  8. public class DisableValidationAttribute : Attribute
  9. {
  10. }
  11. }