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

16 lines
384 B
C#

using Windows.Storage;
using ModernKeePass.Interfaces;
using System;
using System.Threading.Tasks;
using System.Collections.Generic;
namespace ModernKeePass.ImportFormats
{
public class NullImportFormat: IFormat
{
public Task<List<Dictionary<string, string>>> Import(IStorageFile source)
{
throw new NotImplementedException();
}
}
}