
refactiring, docpage * Yavsc.sln: * Web.csproj: * YavscModel.csproj: * OtherWebException.cs: * ProjectInfo.cs: * IValueProvider.cs: * CalendarApi.cs: * HomeController.cs: * TemplateException.cs: * WorkFlowController.cs: * NpgsqlWorkflow.csproj: * GoogleErrorMessage.cs: * ITCPNpgsqlProvider.cs: * NpgsqlContentProvider.cs: * ITContentProvider.csproj: * FrontOfficeApiController.cs: * NpgsqlContentProvider.csproj: refactoring * App.master: * WebApiConfig.cs: New Web api configuration architecture * SalesCatalog.csproj: * XmlCatalogProvider.cs: using MVC to get the catalog xml filename * WorkFlowManager.cs: * FrontOfficeController.cs: * CatalogManager.cs: No more extra argument to get the catalog * DateQuery.aspx: * AskForADate.cs: * GoogleController.cs: Google Date new query model * style.css: * BBCodeHelper.cs: Doc page responsive design * Service.cs: * SetPrice.cs: xml doc * WebApiConfig.cs: refactioring
54 lines
1.2 KiB
C#
54 lines
1.2 KiB
C#
using System;
|
|
using Yavsc;
|
|
|
|
namespace ITContentProvider
|
|
{
|
|
/// <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; }
|
|
}
|
|
}
|
|
|