namespace Zinnia.Rule
{
///
/// Allows determining whether an object is accepted.
///
public interface IRule
{
///
/// Determines whether an object is accepted.
///
/// The object to check.
/// if is accepted, otherwise.
bool Accepts(object target);
}
}