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 of keys in the dictionary. /// The type of values in the dictionary. public interface IEventDictionary : IDictionary, IEventCollection> {} }