using System; namespace TNodeCore.Attribute.Ports{ /// /// Batch out port attribute could specify a batch out port,allowing large scale calculation. /// [AttributeUsage(AttributeTargets.Method, AllowMultiple = false, Inherited = true)] public class BatchOutputAttribute:PortAttribute{ public BatchOutputAttribute(string name="") : base(name){ } } }