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 ServerAutostartMethod
|
|
|
|
|
|
{
|
2024-08-12 00:15:16 -05:00
|
|
|
|
[Display(Name = "On Application Start")]
|
2023-12-20 20:25:25 -06:00
|
|
|
|
OnApplicationStart,
|
2024-08-12 00:15:16 -05:00
|
|
|
|
[Display(Name = "On Player Activity")]
|
2023-12-20 20:25:25 -06:00
|
|
|
|
OnPlayerActivity
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|