mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-26 12:08:37 +08:00
this is for cases where you would like to have INotifyCollectionChanged and INotifyPropertyChanged implemented, but dont need the level of detail that those types provide.
10 lines
252 B
C#
10 lines
252 B
C#
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
|
|
namespace mRemoteNG.Tools.CustomCollections
|
|
{
|
|
public interface IFullyNotifiableList<T> : IList<T>, INotifyCollectionUpdated<T>
|
|
where T : INotifyPropertyChanged
|
|
{
|
|
}
|
|
} |