1namespace Unity.VisualScripting 2{ 3 public interface IDefaultValue<out T> 4 { 5 T defaultValue { get; } 6 } 7}