MainWindow skeleton

This commit is contained in:
2022-04-03 09:22:24 +02:00
parent 7ff3898bd9
commit b6b8a7b3f8
28 changed files with 432 additions and 105 deletions

View File

@@ -2,6 +2,7 @@ namespace FileTime.Core.Models
{
public interface IContainer : IItem
{
IReadOnlyList<IAbsolutePath> Items { get; }
IObservable<IReadOnlyList<IAbsolutePath>> Items { get; }
IObservable<bool> IsLoading { get; }
}
}