mirror of
https://github.com/wismna/ModernKeePass.git
synced 2025-10-03 07:30:15 -04:00
12 lines
325 B
C#
12 lines
325 B
C#
using System.Collections.Generic;
|
|
using ModernKeePass.Application.Common.Models;
|
|
|
|
namespace ModernKeePass.Application.Common.Interfaces
|
|
{
|
|
public interface IBreadcrumbService
|
|
{
|
|
void Push(BreadcrumbItem item);
|
|
BreadcrumbItem Pop(int count = 1);
|
|
IEnumerable<BreadcrumbItem> GetItems();
|
|
}
|
|
} |