ComplianceServer/code/DG.Core/AutoIoc/LifeCycle.cs

16 lines
252 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DG.Core
{
public enum LifeCycle
{
Scoped = 0x1,
Singleton = 0x2,
Transient = 0x3,
}
}