LANCommander/LANCommander.Server/Data/Enums/ServerAutostartMethod.cs
2024-08-04 18:44:33 -05:00

13 lines
316 B
C#

using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
namespace LANCommander.Server.Data.Enums
{
public enum ServerAutostartMethod
{
[Display(Name = "Application Start")]
OnApplicationStart,
[Display(Name = "Player Activity")]
OnPlayerActivity
}
}