Class SentenceActEntry
Represents an entry containing a source command and its associated act.
public record SentenceActEntry : IEquatable<SentenceActEntry>
- Inheritance
-
SentenceActEntry
- Implements
- Inherited Members
- Extension Methods
Constructors
SentenceActEntry(Sentence, IAct)
Represents an entry containing a source command and its associated act.
public SentenceActEntry(Sentence Sentence, IAct Act)
Parameters
Properties
Act
The act associated with the source command.
public IAct Act { get; init; }
Property Value
Sentence
The source sentence.
public Sentence Sentence { get; init; }