BuildFeed/BuildFeed.Model/ProjectFamily.cs
Thomas Hounsell 0ae7e3551e Add RS3 tag; Language updates
JA, NL and TR translation improvements; Few tweaks to build view.
2017-02-23 22:17:13 +00:00

51 lines
950 B
C#

using System.ComponentModel.DataAnnotations;
namespace BuildFeed.Model
{
public enum ProjectFamily
{
None,
[Display(Name = "Windows 2000")]
Windows2000,
[Display(Name = "Neptune")]
Neptune,
[Display(Name = "Windows XP")]
WindowsXP,
[Display(Name = "Server 2003")]
Server2003,
[Display(Name = "Longhorn")]
Longhorn,
[Display(Name = "Vista")]
WindowsVista,
[Display(Name = "Windows 7")]
Windows7,
[Display(Name = "Windows 8")]
Windows8,
[Display(Name = "Windows 8.1")]
Windows81,
[Display(Name = "Threshold")]
Threshold,
[Display(Name = "Threshold 2")]
Threshold2,
[Display(Name = "Redstone")]
Redstone,
[Display(Name = "Redstone 2")]
Redstone2,
[Display(Name = "Redstone 3")]
Redstone3
}
}