You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
560 B
20 lines
560 B
using System;
|
|
using System.Drawing;
|
|
|
|
namespace Timelines.Model
|
|
{
|
|
public class BarModel
|
|
{
|
|
public DateTime StartValue { get; set; }
|
|
public DateTime EndValue { get; set; }
|
|
public Color Color { get; set; }
|
|
public string Name { get; set; }
|
|
public TimeSpan Duration { get; set; }
|
|
public int RowIndex { get; set; }
|
|
public bool IsClicked { get; set; }
|
|
public bool IsMouseOver { get; set; }
|
|
public bool Visible { get; set; }
|
|
public Rectangle BarRectangle { get; set; }
|
|
}
|
|
|
|
}
|
|
|