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