Files
modernkeepass/ModernKeePass/Interfaces/IFormat.cs
BONNEVILLE Geoffroy 37deac2ab9 Basic CSV Import working
2018-09-10 17:29:52 +02:00

11 lines
246 B
C#

using System.Collections.Generic;
using System.Threading.Tasks;
using Windows.Storage;
namespace ModernKeePass.Interfaces
{
public interface IFormat
{
Task<List<Dictionary<string, string>>> Import(IStorageFile source);
}
}