Class BranchInfo
- Namespace
- Foundation.Data.Doublets.Cli
- Assembly
- Foundation.Data.Doublets.Cli.dll
Metadata describing one branch in the version-control DAG.
public sealed record BranchInfo : IEquatable<BranchInfo>
- Inheritance
-
BranchInfo
- Implements
- Inherited Members
Constructors
BranchInfo(string, string?, long, long)
Metadata describing one branch in the version-control DAG.
public BranchInfo(string Name, string? Parent, long ForkSeq, long Head)
Parameters
Properties
ForkSeq
public long ForkSeq { get; init; }
Property Value
Head
public long Head { get; init; }
Property Value
Name
public string Name { get; init; }
Property Value
Parent
public string? Parent { get; init; }