Interface IOperationDocumentation
- Namespace
- XENBIT.ResQueServe.Abstractions.Interfaces
- Assembly
- RQS.Abstractions.dll
Represents documentation for an operation, including metadata such as the creator, creation date, and textual content.
public interface IOperationDocumentation
Properties
CreatedBy
Gets or sets the user information of the individual who created this documentation.
IUserInfo CreatedBy { get; init; }
Property Value
CreatedOn
Gets or sets the date and time when this documentation was created.
DateTimeOffset CreatedOn { get; init; }
Property Value
Id
Guid Id { get; init; }
Property Value
OperationId
Guid OperationId { get; init; }
Property Value
Text
Gets or sets the textual content of the documentation.
string Text { get; init; }