Files
modernkeepass/ModernKeePass.Application/Common/Interfaces/IRecentProxy.cs

14 lines
371 B
C#
Raw Normal View History

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