mirror of
https://github.com/ZuneDev/MicrosoftIris.git
synced 2026-07-27 13:13:29 -07:00
9 lines
203 B
C#
9 lines
203 B
C#
using System.Collections.Generic;
|
|
using System.Collections.Specialized;
|
|
|
|
namespace Microsoft.Iris.Debug.Data;
|
|
|
|
public interface IObservableCollection<T> : ICollection<T>, INotifyCollectionChanged
|
|
{
|
|
}
|