Files
mixtape/zero.Core/Options/MapperOptions.cs
T

13 lines
257 B
C#
Raw Normal View History

2020-05-18 15:55:43 +02:00
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());
}
}
}