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