2020-03-24 13:01:14 +01:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace ModernKeePass.Application.Common.Interfaces
|
|
|
|
|
{
|
|
|
|
|
public interface IImportFormat
|
|
|
|
|
{
|
2020-04-08 16:23:15 +02:00
|
|
|
|
List<Dictionary<string, string>> Import(IList<string> fileContents);
|
2020-03-24 13:01:14 +01:00
|
|
|
|
}
|
|
|
|
|
}
|