2019-06-30 01:05:10 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
2019-07-16 21:35:21 +00:00
|
|
|
|
namespace Toolbox.Library
|
2019-06-30 01:05:10 +00:00
|
|
|
|
{
|
|
|
|
|
public interface INode
|
|
|
|
|
{
|
|
|
|
|
string Name { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|