IElement.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace yEd.XGML.DocumentEntities.Base
{
public interface IElement
{
int id { set; get; }
string label { set; get; }
bool isGroup { get; }
}
}