using System; using System.Collections.Generic; namespace Zenject { [NoReflectionBaking] public class FactoryBindInfo { public FactoryBindInfo(Type factoryType) { FactoryType = factoryType; Arguments = new List(); } public Type FactoryType { get; private set; } public Func ProviderFunc { get; set; } public List Arguments { get; set; } } }