using System.Collections.Generic; using System.Threading.Tasks; using ModernKeePass.Domain.Dtos; namespace ModernKeePass.Application.Common.Interfaces { public interface IRecentProxy { int EntryCount { get; } Task Get(string token, bool updateAccessTime = false); Task> GetAll(); Task Add(FileInfo recentItem); void ClearAll(); } }