Files
FileTime2/src/Core/FileTime.Core.Abstraction/Models/IContainer.cs

12 lines
334 B
C#

using System.Collections.ObjectModel;
namespace FileTime.Core.Models;
public interface IContainer : IItem
{
ObservableCollection<AbsolutePath> Items { get; }
IObservable<bool> IsLoading { get; }
bool? IsLoaded { get; }
Task WaitForLoaded(CancellationToken token = default);
bool AllowRecursiveDeletion { get; }
}