Files

9 lines
118 B
C#
Raw Permalink Normal View History

2026-06-02 18:57:47 -04:00
namespace BracerLib.DI
{
public enum DependencyLifetime
{
Transient = 0,
Singleton
}
}