mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-27 03:14:57 +00:00
14 lines
369 B
C#
14 lines
369 B
C#
using System.Collections.Generic;
|
|
using PepperDash.Essentials.Devices.Common.Codec;
|
|
|
|
|
|
/// <summary>
|
|
/// Defines the contract for IHasDirectoryHistoryStack
|
|
/// </summary>
|
|
public interface IHasDirectoryHistoryStack : IHasDirectory
|
|
{
|
|
/// <summary>
|
|
/// Gets the DirectoryBrowseHistoryStack
|
|
/// </summary>
|
|
Stack<CodecDirectory> DirectoryBrowseHistoryStack { get; }
|
|
} |