using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using yEd.XGML.DocumentEntities.Base;
namespaceyEd.XGML.DocumentEntities.NodeEntitie
{
publicclassNode : IElement
{
publicint id { set; get; }
publicstring label { set; get; }
public NodeGraphics graphics { set; get; } = new NodeGraphics();
public NodeLabelGraphics LabelGraphics { set; get; } = new NodeLabelGraphics();
///<summary>/// ID GroupNode, к которому принадлежит элемент. Null - в корне графа///</summary>publicint? gid { set; get; } = null;
publicbool isGroup => false;
}
}