SafeDispatch/Safedispatch_4_0/maptab/UIClasses/ColorUnitTreeNode.cs
2024-02-22 18:43:59 +02:00

28 lines
543 B
C#

using System;
using System.Collections.Generic;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Telerik.WinControls.UI;
namespace Dispatcher.maptab.UIClasses
{
public class ColorUnitTreeNode : RadTreeNode
{
private Color _color;
public Color Color
{
get { return this._color; }
set { this._color = value; }
}
public ColorUnitTreeNode(string name) : base(name)
{
// nothing here
}
}
}