15 lines
336 B
C#
15 lines
336 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 PathGroupNode : TreeNodeCustom
|
|
{
|
|
public PathGroupNode(string text) { Text = text; Checked = true; }
|
|
}
|
|
}
|