Files
modernkeepass/ModernKeePass.Application/Common/Interfaces/IImportFormat.cs
Geoffroy BONNEVILLE 1046110dd2 Code cleanup (bis)
2020-04-08 16:23:15 +02:00

9 lines
219 B
C#

using System.Collections.Generic;
namespace ModernKeePass.Application.Common.Interfaces
{
public interface IImportFormat
{
List<Dictionary<string, string>> Import(IList<string> fileContents);
}
}