
- Mvc-like action binding in the WF web api ... ? * Yavsc.sln: * Web.csproj: * MvcActionValueBinder.cs: * yavscModel.csproj: * WFOrder.cs: * IWFOrder.cs: * BasketImpact.cs: * ProjectInfo.cs: * IWFModule.cs: * IWFCommand.cs: * WorkFlowController.cs: * NewProjectModel.cs: * IContentProvider.cs: * ITCPNpgsqlProvider.cs: * WorkFlowProvider.csproj: * ITContentProvider.csproj: * AssemblyInfo.cs: * OrderStatusChangedEventArgs.cs: * NpgsqlContentProvider.cs:
19 lines
376 B
C#
19 lines
376 B
C#
using System;
|
|
using WorkFlowProvider;
|
|
|
|
namespace ITContentProvider
|
|
{
|
|
public class ProjectInfo
|
|
{
|
|
string Name { get; set; }
|
|
string Licence { get; set; }
|
|
string BBDescription { get; set; }
|
|
DateTime StartDate { get; set; }
|
|
string ProdVersion { get; set; }
|
|
string StableVersion { get; set; }
|
|
string TestingVersion { get; set; }
|
|
string WebSite { get; set; }
|
|
}
|
|
}
|
|
|