//
// EntityUnfollowHook.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.
using NosSmooth.LocalBinding.EventArgs;
using NosSmooth.LocalBinding.Hooks;
namespace NosSmooth.Extensions.SharedBinding.Hooks.Specific;
///
internal class EntityUnfollowHook : SingleHook, IEntityUnfollowHook
{
///
/// Initializes a new instance of the class.
///
/// The underlying hook.
public EntityUnfollowHook(INostaleHook underlyingHook)
: base(underlyingHook)
{
}
}