We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 35e7ba3 commit 9d88d2aCopy full SHA for 9d88d2a
1 file changed
test/Tests.Entities/Element.cs
@@ -1,16 +1,17 @@
1
-namespace ExRam.Gremlinq.Tests.Entities;
2
-
3
-public abstract class Element
+namespace ExRam.Gremlinq.Tests.Entities
4
{
5
- public object? Id { get; set; }
+ public abstract class Element
+ {
+ public object? Id { get; set; }
6
7
- public string? Label { get; set; }
+ public string? Label { get; set; }
8
9
- public string? PartitionKey { get; set; }
+ public string? PartitionKey { get; set; }
10
11
#if Gremlinq_Extensions
12
- public string? _Etag { get; set; }
+ public string? _Etag { get; set; }
13
14
- public string? _Self { get; set; }
+ public string? _Self { get; set; }
15
#endif
16
+ }
17
}
0 commit comments