2023-06-28 09:38:53 +02:00
|
|
|
|
// Copyright (c) Microsoft Corporation
|
|
|
|
|
|
// The Microsoft Corporation licenses this file to you under the MIT license.
|
|
|
|
|
|
// See the LICENSE file in the project root for more information.
|
|
|
|
|
|
|
|
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.ObjectModel;
|
|
|
|
|
|
using Peek.FilePreviewer.Previewers.Archives.Models;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Peek.FilePreviewer.Previewers.Interfaces
|
|
|
|
|
|
{
|
2024-03-26 17:50:08 +01:00
|
|
|
|
public interface IArchivePreviewer : IPreviewer, IPreviewTarget, IDisposable
|
2023-06-28 09:38:53 +02:00
|
|
|
|
{
|
|
|
|
|
|
ObservableCollection<ArchiveItem> Tree { get; }
|
|
|
|
|
|
|
|
|
|
|
|
string? DirectoryCountText { get; }
|
|
|
|
|
|
|
|
|
|
|
|
string? FileCountText { get; }
|
|
|
|
|
|
|
|
|
|
|
|
string? SizeText { get; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|