Files
ICD.Common.Utils/ICD.Common.Utils/Collections/INotifyCollectionChanged.cs
2020-10-22 12:17:55 -04:00

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;
}
}