Files
Geoffroy BONNEVILLE df973c5f62 StorageFile client more intelligent
Save is working again
2020-04-24 16:16:48 +02:00

12 lines
271 B
C#

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