/* * Author: Nikolay Dvurechensky * Site: https://www.dvurechensky.pro/ * Gmail: dvurechenskysoft@gmail.com * Last Updated: 12 мая 2025 00:57:53 * Version: 1.0.5 */ namespace GraphCustomSearcher.Data; /// /// Узел /// public class Verticle { /// /// Имя /// public string Name { get; set; } /// /// Статус посещения узла /// public bool IsVisited { get; set; } public Verticle(string name) { Name = name; } }