using System; namespace AllocsFixes.PersistentData { [Serializable] public class Attributes { private bool hideChatCommands; private string hideChatCommandPrefix; public bool HideChatCommands { get => hideChatCommands; set => hideChatCommands = value; } public string HideChatCommandPrefix { get => hideChatCommandPrefix ?? (hideChatCommandPrefix = ""); set => hideChatCommandPrefix = value; } } }