using System.Collections.Generic; using System.Threading.Tasks; namespace ModernKeePass.Domain.Interfaces { public interface IImportFormat { Task>> Import(string path); } }