1using System; 2 3namespace Unity.VisualScripting 4{ 5 public interface IUnitValuePort : IUnitPort 6 { 7 Type type { get; } 8 } 9}