1
0
mirror of synced 2024-11-14 19:17:39 +01:00
Switch-Toolbox/Switch_Toolbox_Library/Interfaces/Utility/ICloneableNode.cs

19 lines
408 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Toolbox.Library
{
/// <summary>
/// Reprenets a clonable tree node.
/// This is currently not used, but was planned for the search feature
/// </summary>
public interface ICloneableNode
{
TreeNode CloneNode();
}
}