Class SourcedActEntry
Represents an entry containing a source command and its associated act.
public record SourcedActEntry : IEquatable<SourcedActEntry>
- Inheritance
-
SourcedActEntry
- Implements
- Inherited Members
- Extension Methods
Constructors
SourcedActEntry(ISentenceCarrier, IAct)
Represents an entry containing a source command and its associated act.
public SourcedActEntry(ISentenceCarrier SentenceSource, IAct Act)
Parameters
SentenceSourceISentenceCarrierThe source sentence carrier, carrying both the Sentence and the execution-order SentenceIndex.
ActIActThe act associated with the source command.
Properties
Act
The act associated with the source command.
public IAct Act { get; init; }
Property Value
SentenceSource
The source sentence carrier, carrying both the Sentence and the execution-order SentenceIndex.
public ISentenceCarrier SentenceSource { get; init; }