//-----------------------------------------------------------------------
//
// Copyright (c) 2009 Deltares. All rights reserved.
//
// Barry Faassen
// barry.faassen@deltares.nl
// 23-06-2009
// Interface for plugin to import data from csv files
//-----------------------------------------------------------------------
namespace Deltares.Dam.Data.Importers
{
using System.Collections.Generic;
public interface ICsvImporter
{
bool IsImportFileValid { get; }
}
public interface IImporter
{
IEnumerable ImportedItems { get; }
}
public interface ICsvImporter : ICsvImporter, IImporter
{
}
}