Files
modernkeepass/ModernKeePass/Interfaces/IFormat.cs

11 lines
246 B
C#
Raw Normal View History

2018-09-10 17:29:52 +02:00
using System.Collections.Generic;
using System.Threading.Tasks;
using Windows.Storage;
2018-09-07 18:16:40 +02:00
namespace ModernKeePass.Interfaces
{
public interface IFormat
{
2018-09-10 17:29:52 +02:00
Task<List<Dictionary<string, string>>> Import(IStorageFile source);
2018-09-07 18:16:40 +02:00
}
}