Switch-Toolbox/Switch_FileFormatsMain/GUI/Byaml/CourseMuunt/Wrappers/PathCollectionNode.cs

17 lines
414 B
C#
Raw Normal View History

2019-04-07 00:16:41 +00: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; }
public List<PathGroup> PathGroups = new List<PathGroup>();
}
}