59 lines
1.3 KiB
C#
Executable File
59 lines
1.3 KiB
C#
Executable File
using ThoughtWorks.CruiseControl.Core;
|
|
|
|
namespace ThoughtWorks.CruiseControl.WebDashboard.Plugins.AddProject
|
|
{
|
|
// Commented by Mike Roberts - this is in development - please contact me if you change it
|
|
// public class AddEditProjectModel
|
|
// {
|
|
// private string saveActionName;
|
|
// private readonly Project project;
|
|
// private string status;
|
|
// private bool isAdd;
|
|
// private string updateSourceControlName;
|
|
// private string updateBuilderName;
|
|
//
|
|
// public AddEditProjectModel(Project project)
|
|
// {
|
|
// this.project = project;
|
|
// this.status = "";
|
|
// this.isAdd = true;
|
|
// this.saveActionName = "";
|
|
// }
|
|
//
|
|
// public string Status
|
|
// {
|
|
// get { return status; }
|
|
// set { status = value; }
|
|
// }
|
|
//
|
|
// public bool IsAdd
|
|
// {
|
|
// get { return isAdd; }
|
|
// set { isAdd = value; }
|
|
// }
|
|
//
|
|
// public string SaveActionName
|
|
// {
|
|
// get { return saveActionName; }
|
|
// set { saveActionName = value; }
|
|
// }
|
|
//
|
|
// public Project Project
|
|
// {
|
|
// get { return project; }
|
|
// }
|
|
//
|
|
// public string UpdateSourceControlUrl
|
|
// {
|
|
// set { updateSourceControlName = value; }
|
|
// get { return updateSourceControlName; }
|
|
// }
|
|
//
|
|
// public string UpdateBuilderUrl
|
|
// {
|
|
// set { updateBuilderName = value; }
|
|
// get { return updateBuilderName; }
|
|
// }
|
|
// }
|
|
}
|