using System.Collections.Generic;
using DTS.Common.Base;
namespace DTS.Common.Interface.Groups
{
///
/// the options view controls selecting files and validating the selection
///
public interface IGroupImportOptionsView:IBaseView
{
///
/// returns true if files have been selected, false if files are not selected
///
/// any errors that were detected during validation
/// any warnings that were detected during validation
///
bool Validate(out List errors, out List warnings);
}
}