9 lines
118 B
C#
9 lines
118 B
C#
|
|
namespace BracerLib.DI
|
||
|
|
{
|
||
|
|
public enum DependencyLifetime
|
||
|
|
{
|
||
|
|
Transient = 0,
|
||
|
|
Singleton
|
||
|
|
}
|
||
|
|
}
|