Files

12 lines
271 B
C#
Raw Permalink Normal View History

using System.Collections.Generic;
using ModernKeePass.Domain.Dtos;
namespace ModernKeePass.Application.Common.Interfaces
{
public interface IRecentProxy
{
int EntryCount { get; }
IEnumerable<FileInfo> GetAll();
void ClearAll();
}
}