Table of Contents

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

IUserInfo

CreatedOn

Gets or sets the date and time when this documentation was created.

DateTimeOffset CreatedOn { get; init; }

Property Value

DateTimeOffset

Id

Guid Id { get; init; }

Property Value

Guid

OperationId

Guid OperationId { get; init; }

Property Value

Guid

Text

Gets or sets the textual content of the documentation.

string Text { get; init; }

Property Value

string