updated db schema def

This commit is contained in:
2025-07-22 11:34:56 -04:00
parent a6f4a89b47
commit 3c35e7f60c
515 changed files with 272693 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using ThoughtWorks.CruiseControl.Remote;
namespace CCNetLogReader
{
public class ServerBuild
{
public string ProjectName { get; private set; }
public IntegrationStatus BuildStatus { get; private set; }
public string LastSuccessfulBuildLabel { get; private set; }
public DateTime LastBuildDate { get; private set; }
public DateTime? PublishedDate { get; private set; }
public ServerBuild(string projectName, IntegrationStatus buildStatus, string lastSuccessfulBuildLabel, DateTime lastBuildDate, DateTime? publishedDate = null)
{
ProjectName = projectName;
BuildStatus = buildStatus;
LastSuccessfulBuildLabel = lastSuccessfulBuildLabel;
LastBuildDate = lastBuildDate;
PublishedDate = publishedDate;
}
}
}