File tree Expand file tree Collapse file tree 2 files changed +9
-1
lines changed
arangodb-net-standard/CollectionApi/Models Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -150,6 +150,7 @@ public class PostCollectionBody
150
150
/// </summary>
151
151
public CollectionSchema Schema { get ; set ; }
152
152
153
+ /// <summary>
153
154
/// Optional. A list of computed values.
154
155
/// </summary>
155
156
public List < ComputedValue > ComputedValues { get ; set ; }
Original file line number Diff line number Diff line change 1
- namespace ArangoDBNetStandard . CollectionApi . Models
1
+ using System . Collections . Generic ;
2
+
3
+ namespace ArangoDBNetStandard . CollectionApi . Models
2
4
{
3
5
public class PutCollectionPropertyBody
4
6
{
@@ -53,5 +55,10 @@ public class PutCollectionPropertyBody
53
55
/// The collection level schema for documents.
54
56
/// </summary>
55
57
public CollectionSchema Schema { get ; set ; }
58
+
59
+ /// <summary>
60
+ /// A list of computed values.
61
+ /// </summary>
62
+ public List < ComputedValue > ComputedValues { get ; set ; }
56
63
}
57
64
}
You can’t perform that action at this time.
0 commit comments