mirror of
https://github.com/ICDSystems/ICD.Common.Utils.git
synced 2026-02-10 18:24:53 +00:00
15 lines
360 B
C#
15 lines
360 B
C#
using System;
|
|
|
|
namespace ICD.Common.Utils.Collections
|
|
{
|
|
// Poor-mans System.Collections.Specialized
|
|
// Delete when we finally drop Crestron 3-series.
|
|
public interface INotifyCollectionChanged
|
|
{
|
|
/// <summary>
|
|
/// Raised when the contents of the collection change, or the order changes.
|
|
/// </summary>
|
|
event EventHandler OnCollectionChanged;
|
|
}
|
|
}
|