Refactor: items with DynamicData

This commit is contained in:
2022-04-22 09:09:14 +02:00
parent da3ccf4317
commit 76c6e30154
31 changed files with 281 additions and 141 deletions

View File

@@ -1,8 +1,10 @@
using DynamicData;
namespace FileTime.Core.Models
{
public interface IContainer : IItem
{
IObservable<IEnumerable<IAbsolutePath>?> Items { get; }
IObservable<IObservable<IChangeSet<IAbsolutePath>>?> Items { get; }
IObservable<bool> IsLoading { get; }
}
}