diff --git a/project/WebDashboard/Dashboard/DataGridRow.cs b/project/WebDashboard/Dashboard/DataGridRow.cs new file mode 100644 index 000000000..14ee60ec4 --- /dev/null +++ b/project/WebDashboard/Dashboard/DataGridRow.cs @@ -0,0 +1,45 @@ +using System; +using System.Drawing; +using ThoughtWorks.CruiseControl.Core.Reporting.Dashboard.Navigation; +using ThoughtWorks.CruiseControl.Core.Util; +using ThoughtWorks.CruiseControl.Remote; +using ThoughtWorks.CruiseControl.WebDashboard.Resources; + +namespace ThoughtWorks.CruiseControl.WebDashboard.Dashboard +{ + public class DataGridRow + { + private readonly string buildStatus; + private readonly string date; + private readonly string runningTime; + private readonly string link; + + public DataGridRow(string buildStatus, string date, string runningTime, string link) + { + this.buildStatus = buildStatus; + this.date = date; + this.runningTime = runningTime; + this.link = link; + } + + public string BuildStatus + { + get { return buildStatus; } + } + + public string Date + { + get { return date; } + } + + public string RunningTime + { + get { return runningTime; } + } + + public string Link + { + get { return link; } + } + } +}