Class FlowGraphNode
public sealed record FlowGraphNode : IEquatable<FlowGraphNode>
- Inheritance
-
FlowGraphNode
- Implements
- Inherited Members
Constructors
FlowGraphNode(string, FlowGraphNodeKind, string, string?, string?, int)
public FlowGraphNode(string Id, FlowGraphNodeKind Kind, string Title, string? Subtitle, string? Detail, int Column)
Parameters
Properties
Column
public int Column { get; init; }
Property Value
Detail
public string? Detail { get; init; }
Property Value
Id
public string Id { get; init; }
Property Value
Kind
public FlowGraphNodeKind Kind { get; init; }
Property Value
Subtitle
public string? Subtitle { get; init; }
Property Value
Title
public string Title { get; init; }