File: RegistrationPair.cs
Web Access
Project: src\src\command-line-api\src\System.CommandLine.Suggest\dotnet-suggest.csproj (dotnet-suggest)
namespace System.CommandLine.Suggest
{
    public class Registration
    {
        public Registration(string executablePath)
        {
            ExecutablePath = executablePath ?? throw new ArgumentNullException(nameof(executablePath));
        }

        public string ExecutablePath { get; }
    }
}