mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-26 03:58:45 +08:00
13 lines
204 B
C#
13 lines
204 B
C#
namespace mRemoteNG.Tree
|
|
{
|
|
public enum TreeNodeType
|
|
{
|
|
None = 0,
|
|
Root = 1,
|
|
Container = 2,
|
|
Connection = 3,
|
|
PuttyRoot = 4,
|
|
PuttySession = 5
|
|
}
|
|
}
|