nevermore-kang's picture
Upload folder using huggingface_hub
18a519f verified
Raw
History Blame Contribute Delete
241 Bytes
namespace Unity.VisualScripting
{
public interface IUnitPortDefinition
{
string key { get; }
string label { get; }
string summary { get; }
bool hideLabel { get; }
bool isValid { get; }
}
}