Backend/e-suite.WorkBench/eSuite.WorkBench/IoC/IocRegistration.cs
2026-01-20 21:50:10 +00:00

12 lines
224 B
C#

using System;
namespace eSuite.WorkBench.IoC
{
public class IocRegistration
{
public Object Object { get; set; }
public Type Type { get; set; }
public bool Singleton { get; set; }
}
}