EnableValidationAttribute.cs 303 B

12345678910111213
  1. using System;
  2. namespace Abp.Runtime.Validation
  3. {
  4. /// <summary>
  5. /// Can be added to a method to enable auto validation if validation is disabled for it's class.
  6. /// </summary>
  7. [AttributeUsage(AttributeTargets.Method)]
  8. public class EnableValidationAttribute : Attribute
  9. {
  10. }
  11. }