Table of Contents

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

Name string
Parent string
ForkSeq long
Head long

Properties

ForkSeq

public long ForkSeq { get; init; }

Property Value

long

Head

public long Head { get; init; }

Property Value

long

Name

public string Name { get; init; }

Property Value

string

Parent

public string? Parent { get; init; }

Property Value

string