2019-06-30 03:05:10 +02:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
2019-07-16 23:35:21 +02:00
|
|
|
|
namespace Toolbox.Library
|
2019-06-30 03:05:10 +02:00
|
|
|
|
{
|
2019-08-06 23:35:18 +02:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Represets a directory from an <see cref="IArchiveFile"/>
|
|
|
|
|
/// </summary>
|
2019-06-30 03:05:10 +02:00
|
|
|
|
public interface IDirectoryContainer : INode
|
|
|
|
|
{
|
|
|
|
|
IEnumerable<INode> Nodes { get; }
|
|
|
|
|
}
|
|
|
|
|
}
|