using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Inet.Viewer.WinForms.Prompt
{
///
/// Simple delegate, called when a panel is validated
///
public interface ValidationDelegate
{
///
/// A validation has occurred with the result being passed as a parameter
///
/// The result of the validation
void DoneWithValidation(bool wasValid);
}
}