IPolicy.cs 269 B

123456789101112
  1. using Abp.Dependency;
  2. namespace Abp.Domain.Policies
  3. {
  4. /// <summary>
  5. /// This interface can be implemented by all Policy classes/interfaces to identify them by convention.
  6. /// </summary>
  7. public interface IPolicy : ITransientDependency
  8. {
  9. }
  10. }