13 lines
316 B
C#
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
|
|
}
|
|
}
|