using System.Collections.Generic; namespace Abp.Auditing { /// /// List of selector functions to select classes/interfaces to be audited. /// public interface IAuditingSelectorList : IList { /// /// Removes a selector by name. /// /// /// bool RemoveByName(string name); } }