1
0
mirror of synced 2024-12-04 03:57:20 +01:00
Switch-Toolbox/Switch_FileFormatsMain/GUI/Byaml/CourseMuunt/Wrappers/PathCollectionNode.cs
2019-04-06 20:16:41 -04:00

17 lines
414 B
C#

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>();
}
}