//
// HookStateEventArgs.cs
//
// Copyright (c) František Boháček. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
namespace NosSmooth.Extensions.SharedBinding.EventArgs;
///
public class HookStateEventArgs : System.EventArgs
{
///
/// Initializes a new instance of the class.
///
/// The new state.
public HookStateEventArgs(bool enabled)
{
Enabled = enabled;
}
///
/// Gets the new state.
///
public bool Enabled { get; }
}