Skip to main content

MultipleRtEntityResultDto

Namespace: Meshmakers.Octo.MeshAdapter.Nodes.PipelineDataTransferObjects

Represents the result of a multiple RT entity extraction operation.

public record MultipleRtEntityResultDto : IEquatable<MultipleRtEntityResultDto>

Inheritance ObjectMultipleRtEntityResultDto
Implements IEquatable<MultipleRtEntityResultDto>

Properties

OriginRtId

Represents the origin RtId for the entity extraction operation.

public OctoObjectId OriginRtId { get; set; }

Property Value

OctoObjectId

TotalCount

Returns the total count of entities extracted during the operation.

public long TotalCount { get; set; }

Property Value

Int64

Items

Represents the collection of entities extracted during the operation.

public IEnumerable<RtEntity> Items { get; set; }

Property Value

IEnumerable<RtEntity>

Constructors

MultipleRtEntityResultDto()

Caution

Constructors of types with required members are not supported in this version of your compiler.


public MultipleRtEntityResultDto()