Fauna v10 .NET/C# Driver 0.2.0-beta
 
Loading...
Searching...
No Matches
Ref.cs
Go to the documentation of this file.
1namespace Fauna.Types;
2
6public class Ref
7{
8 public Ref(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 module, a singleton object grouping related functionalities. Modules are serialized as @...
Definition Module.cs:8
Represents a document ref.
Definition Ref.cs:7
Ref(string id, Module collection)
Definition Ref.cs:8
string Id
Gets the string value of the ref id.
Definition Ref.cs:17
Module Collection
Gets the collection to which the ref belongs.
Definition Ref.cs:22