040be2feaa
Convert constructors into primary constructors Simplified logic with use of ??, ??= and method groups Cleaned up redundant conditional access qualifiers
7 lines
114 B
C#
7 lines
114 B
C#
namespace SPTarkov.DI;
|
|
|
|
public class SingletonStateHolder<T>(T state)
|
|
{
|
|
public T State { get; } = state;
|
|
}
|