using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace GanttChart
{
///
/// 时间范围
///
public class TimeRange
{
///
/// 开始时间
///
public DateTime StartTime { get; set; }
///
/// 结束时间
///
public DateTime EndTime { get; set; }
///
/// 左边
///
internal int Left { get; set; }
///
/// 宽度
///
internal int Width { get; set; }
}
}