2019-04-06 20:16:41 -04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using Switch_Toolbox.Library;
|
|
|
|
|
|
|
|
|
|
namespace FirstPlugin.Turbo.CourseMuuntStructs
|
|
|
|
|
{
|
|
|
|
|
public class PathCollectionNode : TreeNodeCustom
|
|
|
|
|
{
|
|
|
|
|
public PathCollectionNode(string text) { Text = text; Checked = true; }
|
|
|
|
|
|
2019-04-07 21:14:39 -04:00
|
|
|
|
public List<BasePathGroup> PathGroups = new List<BasePathGroup>();
|
2019-04-06 20:16:41 -04:00
|
|
|
|
}
|
|
|
|
|
}
|