You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Zero/ZeroLevel/Services/Trees/Contracts/ITreeNode.cs

15 lines
347 B

using System;
using System.Collections.Generic;
namespace ZeroLevel.Services.Trees
{
public interface ITreeNode : ICloneable
{
string Name { get; }
object Tag { get; }
bool IsSelected { get; set; }
IEnumerable<ITreeNode> Children { get; }
ITreeNode AppendChild(string name, object tag);
}
}

Powered by TurnKey Linux.