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(IGetSentence, IAct)
Represents an entry containing a source command and its associated act.
public SourcedActEntry(IGetSentence SentenceSource, IAct Act)
Parameters
SentenceSourceIGetSentenceThe source sentence.
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.
public IGetSentence SentenceSource { get; init; }