IElement.cs

18 lines | 303 B Blame History Raw Download
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; }
    }
}