Table of Contents

Class Note

Namespace
adas_core.Domain.Models
Assembly
adas-core.Domain.dll

Represents a note entity used to store textual or descriptive information.

public class Note
Inheritance
Note
Inherited Members
Extension Methods

Properties

Comment

public string Comment { get; set; }

Property Value

string

CommentType

public string? CommentType { get; set; }

Property Value

string

EnteredTime

public DateTime? EnteredTime { get; set; }

Property Value

DateTime?

Methods

ToString()

Returns a string representation of the note, conditionally including the comment type, comment text, and entered time when their values are present.

public override string ToString()

Returns

string

A formatted string in the form "note[...]" containing the available note properties, or "note[]" when no properties are set.