Files
mixtape/zero.Core/Options/IntegrationOptions.cs
T
2020-12-16 13:22:18 +01:00

14 lines
300 B
C#

using zero.Core.Entities;
using zero.Core.Integrations;
namespace zero.Core.Options
{
public class IntegrationOptions : ZeroBackofficeCollection<IIntegrationType>, IZeroCollectionOptions
{
public void Add<T>() where T : IIntegrationType, new()
{
Items.Add(new T());
}
}
}