Files
SPT-Server-Build/Libraries/SPTarkov.DI/SingletonStateHolder.cs
T
Chomp 040be2feaa More strings to MongoIds
Convert constructors into primary constructors

Simplified logic with use of ??, ??= and method groups

Cleaned up redundant conditional access qualifiers
2025-07-14 22:29:41 +01:00

7 lines
114 B
C#

namespace SPTarkov.DI;
public class SingletonStateHolder<T>(T state)
{
public T State { get; } = state;
}