DotNext by .NET Foundation and Contributors

<PackageReference Include="DotNext" Version="5.17.2" />

 ISingleton<TSelf>

public interface ISingleton<TSelf> where TSelf : ISingleton<TSelf>
Represents singleton pattern.
using System.Runtime.CompilerServices; namespace DotNext.Patterns { [NullableContext(1)] public interface ISingleton<out TSelf> where TSelf : class, ISingleton<TSelf> { TSelf Instance { get; } } }