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