using System.Collections;
namespace WPFluent.Controls;
public interface ITreeModel
{
///
/// Get list of children of the specified parent
///
public IEnumerable? GetChildren(object parent);
///
/// returns wheather specified parent has any children or not.
///
public bool HasChildren(object parent);
}