Fauna v10 .NET/C# Driver 0.2.0-beta
 
Loading...
Searching...
No Matches
Attributes.cs
Go to the documentation of this file.
2
3
7[AttributeUsage(AttributeTargets.Class)]
8public class ObjectAttribute : Attribute
9{
10}
11
15[AttributeUsage(AttributeTargets.Property)]
16public class FieldAttribute : Attribute
17{
18 internal readonly string? Name;
19
20 public FieldAttribute() { }
21
22 public FieldAttribute(string name)
23 {
24 Name = name;
25 }
26}
Attribute used to specify properties of a field in a Fauna object.
Definition Attributes.cs:17
Attribute used to indicate that a class represents a Fauna document or struct.
Definition Attributes.cs:9