TeamCity.CSharpInteractive/VerbosityLevelSettingDescription.cs (10 lines of code) (raw):
// ReSharper disable ClassNeverInstantiated.Global
namespace TeamCity.CSharpInteractive;
using System.Diagnostics.CodeAnalysis;
[ExcludeFromCodeCoverage]
internal class VerbosityLevelSettingDescription : ISettingDescription
{
public bool IsVisible => true;
public Type SettingType => typeof(VerbosityLevel);
public string Key => "l";
public string Description => "Set a verbosity level";
}