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