1
0
mirror of synced 2024-12-01 10:37:25 +01:00
Switch-Toolbox/Switch_Toolbox_Library/Interfaces/ICloneableNode.cs

15 lines
256 B
C#
Raw Normal View History

2019-07-31 23:08:00 +02:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Toolbox.Library
{
public interface ICloneableNode
{
TreeNode CloneNode();
}
}