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