Files
yavsc/ITContentProvider/ProjectInfo.cs
Paul Schneider 31ad967df5 ITContentProvider/ITCPNpgsqlProvider.cs:
ITContentProvider/ITContentProvider.csproj:
ITContentProvider/Model/NewProjectModel.cs:
ITContentProvider/ProjectInfo.cs:
web/Web.csproj:
web/Web.config:
yavscModel/WorkFlow/WorkFlowManager.cs: Namespace ITContentProvider
has been removed, implementation has moved to Yavsc namespace

yavscModel/WorkFlow/WorkFlowManager.cs: Xml doc
2015-06-05 21:00:01 +02:00

54 lines
1.2 KiB
C#

using System;
using Yavsc;
namespace Yavsc.Model
{
/// <summary>
/// Project info.
/// </summary>
public class ProjectInfo
{
/// <summary>
/// Gets or sets the name.
/// </summary>
/// <value>The name.</value>
string Name { get; set; }
/// <summary>
/// Gets or sets the licence.
/// </summary>
/// <value>The licence.</value>
string Licence { get; set; }
/// <summary>
/// Gets or sets the BB description.
/// </summary>
/// <value>The BB description.</value>
string BBDescription { get; set; }
/// <summary>
/// Gets or sets the start date.
/// </summary>
/// <value>The start date.</value>
DateTime StartDate { get; set; }
/// <summary>
/// Gets or sets the prod version.
/// </summary>
/// <value>The prod version.</value>
string ProdVersion { get; set; }
/// <summary>
/// Gets or sets the stable version.
/// </summary>
/// <value>The stable version.</value>
string StableVersion { get; set; }
/// <summary>
/// Gets or sets the testing version.
/// </summary>
/// <value>The testing version.</value>
string TestingVersion { get; set; }
/// <summary>
/// Gets or sets the web site.
/// </summary>
/// <value>The web site.</value>
string WebSite { get; set; }
}
}