12 lines
334 B
C#
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; }
|
|
} |