mirror of https://github.com/ogoun/Zero.git
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.
15 lines
347 B
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);
|
|
}
|
|
} |