LANCommander/LANCommander.Client.Data/Enums/GameType.cs

17 lines
362 B
C#
Raw Permalink Normal View History

using System.ComponentModel.DataAnnotations;
namespace LANCommander.Client.Data.Enums
{
public enum GameType
{
[Display(Name = "Main Game")]
MainGame,
Expansion,
[Display(Name = "Standalone Expansion")]
StandaloneExpansion,
Mod,
[Display(Name = "Standalone Mod")]
StandaloneMod
}
}