Changed implementation of sample data

Creating a new entry does not create an useless history value
WIP import data
This commit is contained in:
BONNEVILLE Geoffroy
2018-09-10 11:13:44 +02:00
parent deec19a60c
commit bbae2c356a
7 changed files with 66 additions and 8 deletions

View File

@@ -0,0 +1,13 @@
using Windows.Storage;
using ModernKeePass.Interfaces;
namespace ModernKeePass.ImportFormats
{
public class NullImportFormat: IFormat
{
public IPwEntity Import(IStorageFile source)
{
throw new System.NotImplementedException();
}
}
}