16 lines
354 B
C#
16 lines
354 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace LANCommander.SDK.Enums
|
|
{
|
|
public enum GameType
|
|
{
|
|
[Display(Name = "Main Game")]
|
|
MainGame,
|
|
Expansion,
|
|
[Display(Name = "Standalone Expansion")]
|
|
StandaloneExpansion,
|
|
Mod,
|
|
[Display(Name = "Standalone Mod")]
|
|
StandaloneMod
|
|
}
|
|
}
|