InstanceOptions
Represents the instance registration options.
using System.Runtime.CompilerServices;
namespace Stashbox.Registration
{
[System.Runtime.CompilerServices.NullableContext(1)]
[System.Runtime.CompilerServices.Nullable(0)]
public class InstanceOptions
{
public readonly bool IsWireUp;
public readonly object ExistingInstance;
internal InstanceOptions(object existingInstance, bool isWireUp)
{
IsWireUp = isWireUp;
ExistingInstance = existingInstance;
}
}
}