using Config.Net; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace FSI.BT.Tools.RadialMenu.Settings { public class Interface { public interface IInterface { [Option(DefaultValue = "Ctrl+RWin")] string HotKey { get; set; } } } }