12 lines
224 B
C#
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; }
|
|
}
|
|
}
|