12 public string Id {
get; }
33 public Document(
string id,
Module coll, DateTime ts, Dictionary<string, object?> data) : base(coll, ts, data)
Represents the base structure of a document.
string Id
Gets the string value of the document id.
Document(string id, Module coll, DateTime ts, Dictionary< string, object?> data)
Initializes a new instance of the Document class with the specified id, coll, ts, and additional data...
Document(string id, Module coll, DateTime ts)
Initializes a new instance of the Document class with the specified id, coll, and ts.
Represents a module, a singleton object grouping related functionalities. Modules are serialized as @...