using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace GanttChart
{
///
/// 甘特图行
///
public class GanttChartViewRow
{
///
/// 标题
///
public string Title { get; set; }
///
/// 顶部
///
internal int Top { get; set; }
///
/// 按钮
///
internal int Bottom { get; set; }
///
/// 项集合
///
public List Items { get; set; }
}
}