ConsoleGraph/GrufCustom/Data/Verticle.cs

30 lines
565 B
C#
Raw Permalink Normal View History

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