Files
ShrlAlgoToolkit/WPFluent/Controls/TreeModelListView/ITreeModel.cs

17 lines
383 B
C#
Raw Normal View History

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