LANCommander/LANCommander.Client.Data/Enums/GameType.cs
2024-05-21 20:51:09 -05:00

16 lines
362 B
C#

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
}
}