ConsoleGraph/GrufCustom/Data/Edge.cs
Dvurechensky 6cbed7c8c1 1.0.4
2025-05-12 01:05:34 +03:00

31 lines
673 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*
* 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;
/// <summary>
/// Шаблог ребра
/// </summary>
public class Edge
{
/// <summary>
/// Узел начала
/// </summary>
public Verticle VerticleStart { get; set; }
/// <summary>
/// Узел конца
/// </summary>
public Verticle VerticleStop { get; set; }
public Edge(Verticle verticleStart, Verticle verticleStop)
{
VerticleStart = verticleStart;
VerticleStop = verticleStop;
}
}