//
// InstanceEventArgs.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.Extensions.SharedBinding.Lifetime;
namespace NosSmooth.Extensions.SharedBinding.EventArgs;
///
/// Arguments containing information about a shared instance.
///
public class InstanceEventArgs : System.EventArgs
{
///
/// Initializes a new instance of the class.
///
/// The new instance.
public InstanceEventArgs(SharedInstanceInfo instanceInfo)
{
InstanceInfo = instanceInfo;
}
///
/// Gets the information about the new instance.
///
public SharedInstanceInfo InstanceInfo { get; }
}