Add ObservableDictionary

This commit is contained in:
Mira 2022-10-14 13:18:36 +02:00
parent f63fdfca2f
commit 6031bb3f00
Signed by untrusted user who does not match committer: Xorog
GPG key ID: 983798ED9C3E7C36
4 changed files with 144 additions and 7 deletions

View file

@ -2,7 +2,7 @@
public class ObservableListUpdate<T>
{
public ObservableList<T>? List { get; internal set; }
public List<T>? List { get; internal set; }
public IReadOnlyList<T>? NewItems { get; internal set; }
public IReadOnlyList<T>? RemovedItems { get; internal set; }