Files
modernkeepass/ModernKeePass/ImportFormats/NullImportFormat.cs

16 lines
384 B
C#
Raw Normal View History

using Windows.Storage;
using ModernKeePass.Interfaces;
2018-09-10 17:29:52 +02:00
using System;
using System.Threading.Tasks;
using System.Collections.Generic;
namespace ModernKeePass.ImportFormats
{
public class NullImportFormat: IFormat
{
2018-09-10 17:29:52 +02:00
public Task<List<Dictionary<string, string>>> Import(IStorageFile source)
{
2018-09-10 17:29:52 +02:00
throw new NotImplementedException();
}
}
}