LANCommander/LANCommander.SDK/Enums/ServerAutostartMethod.cs

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