#nullable disable namespace NadekoBot.Services; /// /// Delegate which describes a parser which can convert string input into given data type /// /// Data type to convert string to public delegate bool SettingParser(string input, out TData output);