LANCommander/LANCommander.SDK/Enums/ServerConsoleType.cs

12 lines
199 B
C#
Raw Permalink Normal View History

2024-08-12 00:15:16 -05:00
using System.ComponentModel.DataAnnotations;
namespace LANCommander.SDK.Enums
{
public enum ServerConsoleType
{
2024-08-12 00:15:16 -05:00
[Display(Name = "Log File")]
LogFile,
RCON
}
}