mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-17 22:11:48 +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.
9 lines
203 B
C#
9 lines
203 B
C#
using System;
|
|
|
|
namespace mRemoteNG.Tools.CustomCollections
|
|
{
|
|
public interface INotifyCollectionUpdated<T>
|
|
{
|
|
event EventHandler<CollectionUpdatedEventArgs<T>> CollectionUpdated;
|
|
}
|
|
} |