1using System; 2 3namespace Unity.VisualScripting 4{ 5 public interface IIdentifiable 6 { 7 Guid guid { get; } 8 } 9}