Files
modernkeepass/ModernKeePass.Application/Common/Interfaces/IImportFormat.cs

10 lines
255 B
C#
Raw Normal View History

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