13 public string Name {
get; }
34 public NamedDocument(
string name,
Module coll, DateTime ts, Dictionary<string, object?> data) : base(coll, ts, data)
Represents the base structure of a document.
Represents a module, a singleton object grouping related functionalities. Modules are serialized as @...
Represents a document that has a "name" instead of an "id". For example, a Role document is represent...
string Name
Gets the string value of the document name.
NamedDocument(string name, Module coll, DateTime ts)
Initializes a new instance of the NamedDocument class with the specified name, coll,...
NamedDocument(string name, Module coll, DateTime ts, Dictionary< string, object?> data)
Initializes a new instance of the NamedDocument class with the specified name, coll,...