Fauna .NET Driver 0.1.0-beta
 
Loading...
Searching...
No Matches
DocumentRef.cs
Go to the documentation of this file.
1namespace Fauna.Types;
2
6public class DocumentRef
7{
8 public DocumentRef(string id, Module collection)
9 {
10 Id = id;
11 Collection = collection;
12 }
13
17 public string Id { get; }
18
22 public Module Collection { get; }
23}
Represents a document ref.
Definition DocumentRef.cs:7
string Id
Gets the string value of the ref id.
DocumentRef(string id, Module collection)
Definition DocumentRef.cs:8
Module Collection
Gets the collection to which the ref belongs.
Represents a module, a singleton object grouping related functionalities. Modules are serialized as @...
Definition Module.cs:8