using System.Collections.Generic; namespace Assets.Map { public class Graph { public IList Vertices { get; internal set; } = new List(); public ISet<(int, int)> Edges { get; internal set; } = new HashSet<(int, int)>(); } }