MultipleRtEntityResultDto
Namespace: Meshmakers.Octo.MeshAdapter.Nodes.PipelineDataTransferObjects
Represents the result of a multiple RT entity extraction operation.
public record MultipleRtEntityResultDto : IEquatable<MultipleRtEntityResultDto>
Inheritance Object → MultipleRtEntityResultDto
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
Items
Represents the collection of entities extracted during the operation.
public IEnumerable<RtEntity> Items { get; set; }
Property Value
Constructors
MultipleRtEntityResultDto()
Caution
Constructors of types with required members are not supported in this version of your compiler.
public MultipleRtEntityResultDto()