Add ObservableList

This commit is contained in:
Mira 2022-10-03 12:43:42 +02:00
parent 0960d795ac
commit 6c31d2be44
Signed by untrusted user who does not match committer: Xorog
GPG key ID: 983798ED9C3E7C36
2 changed files with 115 additions and 0 deletions

View file

@ -0,0 +1,9 @@
namespace Xorog.UniversalExtensions.Entities;
public class ObservableListUpdate<T>
{
public ObservableList<T>? List { get; internal set; }
public IReadOnlyList<T>? NewItems { get; internal set; }
public IReadOnlyList<T>? RemovedItems { get; internal set; }
}