Files
TorchPlugins/LightPerms/Config.cs
2022-09-22 15:15:33 +07:00

11 lines
254 B
C#

using Torch;
using Torch.Views;
namespace LightPerms;
public class Config : ViewModel
{
[Display(Name = "Default Group Name", Description = "All new players will join this group.")]
public string DefaultGroupName { get; set; } = "player";
}