mirror of
https://github.com/wismna/ModernKeePass.git
synced 2025-10-04 16:10:16 -04:00
16 lines
384 B
C#
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();
|
|
}
|
|
}
|
|
} |