mirror of
https://github.com/wismna/ModernKeePass.git
synced 2025-10-03 23:50:18 -04:00
Basic CSV Import working
This commit is contained in:
@@ -1,13 +1,16 @@
|
||||
using Windows.Storage;
|
||||
using ModernKeePass.Interfaces;
|
||||
using System;
|
||||
using System.Threading.Tasks;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace ModernKeePass.ImportFormats
|
||||
{
|
||||
public class NullImportFormat: IFormat
|
||||
{
|
||||
public IPwEntity Import(IStorageFile source)
|
||||
public Task<List<Dictionary<string, string>>> Import(IStorageFile source)
|
||||
{
|
||||
throw new System.NotImplementedException();
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user