Fauna .NET Driver 0.1.0-beta
 
Loading...
Searching...
No Matches
NamedDocumentRef.cs
Go to the documentation of this file.
1namespace Fauna.Types;
2
7public class NamedDocumentRef
8{
9 public NamedDocumentRef(string name, Module collection)
10 {
11 Name = name;
12 Collection = collection;
13 }
14
18 public string Name { get; }
19
23 public Module Collection { get; }
24}
Represents a module, a singleton object grouping related functionalities. Modules are serialized as @...
Definition Module.cs:8
Represents a document ref that has a "name" instead of an "id". For example, a Role document referenc...
Module Collection
Gets the collection to which the ref belongs.
NamedDocumentRef(string name, Module collection)
string Name
Gets the string value of the ref name.