IValueValidator.cs 290 B

123456789101112131415
  1. using System.Collections.Generic;
  2. namespace Abp.Runtime.Validation
  3. {
  4. public interface IValueValidator
  5. {
  6. string Name { get; }
  7. object this[string key] { get; set; }
  8. IDictionary<string, object> Attributes { get; }
  9. bool IsValid(object value);
  10. }
  11. }