public HyperlinkOptionViewModel()

in src/dotnet/PowerToys.CyclomaticComplexity/Options/HyperlinkOptionViewModel.cs [28:36]


    public HyperlinkOptionViewModel(Lifetime lifetime, string text, ICommand command)
      : base(lifetime)
    {
      Text = text;
      Command = command;

      IsEnabledProperty = new Property<bool>(lifetime, "IsEnabledProperty") { Value = true };
      IsVisibleProperty = new Property<bool>(lifetime, "IsVisibleProperty") { Value = true };
    }