using System.Collections.Generic; namespace Chernobyl.Collections.Generic.Event { /// /// An interface for working with types that /// allow client code to know when the has been /// modified. /// /// The type that is to be held within the collection. public interface IEventCollection : IEventEnumerable, ICollection {} }