1
0
mirror of synced 2024-12-02 19:17:24 +01:00
Switch-Toolbox/Switch_FileFormatsMain/GUI/Byaml/CourseMuunt/Wrappers/PathCollectionNode.cs

17 lines
422 B
C#
Raw Normal View History

2019-04-07 02:16:41 +02: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-08 03:14:39 +02:00
public List<BasePathGroup> PathGroups = new List<BasePathGroup>();
2019-04-07 02:16:41 +02:00
}
}