ElementType.cs

14 lines | 190 B Blame History Raw Download
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace Graph.Simple.Enums
{
    public enum ElementType
    {
        Node,
        Edge
    }
}