using System;
using System.Collections.Generic;
using System.Text;
using System.Windows.Forms;
using IReaper;
namespace IReaper.CourseData{
public class WebcastSeriesTreeNode:TreeNode
{
#region instance
CourseAttributeTypeEnum attributeType;
public WebcastSeriesTreeNode(CourseAttributeTypeEnum AttributeType)
{
this.attributeType = AttributeType;
this.ImageKey = AttributeType.ToString();
this.SelectedImageKey = AttributeType.ToString();
}
/// <summary>
///
/// </summary>
public CourseAttributeTypeEnum AttributeType
{
get { return attributeType; }
}
#endregion
}
}
|