Files
mixtape/zero.Core/Options/MapperOptions.cs
T
2020-05-18 15:55:43 +02:00

13 lines
257 B
C#

using zero.Core.Mapper;
namespace zero.Core.Options
{
public class MapperOptions : ZeroBackofficeCollection<IMapperConfig>, IZeroCollectionOptions
{
public void Add<T>() where T : IMapperConfig, new()
{
Items.Add(new T());
}
}
}