@@ -17,39 +17,39 @@ public class RunningAqlQuery
17
17
/// <summary>
18
18
/// The name of the database the query runs in.
19
19
/// </summary>
20
- public string database { get ; set ; }
20
+ public string Database { get ; set ; }
21
21
22
22
/// <summary>
23
23
/// The name of the user that started the query.
24
24
/// </summary>
25
- public string user { get ; set ; }
25
+ public string User { get ; set ; }
26
26
27
27
/// <summary>
28
28
/// The query string (potentially truncated).
29
29
/// </summary>
30
- public string query { get ; set ; }
30
+ public string Query { get ; set ; }
31
31
32
32
/// <summary>
33
33
/// The bind parameter values used by the query.
34
34
/// </summary>
35
- public Dictionary < string , object > bindVars { get ; set ; }
35
+ public Dictionary < string , object > BindVars { get ; set ; }
36
36
37
37
/// <summary>
38
38
/// The date and time when the query was started.
39
39
/// </summary>
40
- public DateTime ? started { get ; set ; }
40
+ public DateTime ? Started { get ; set ; }
41
41
42
42
/// <summary>
43
43
/// The query’s run time up to the point the list of queries was queried.
44
44
/// </summary>
45
- public string runTime { get ; set ; }
45
+ public string RunTime { get ; set ; }
46
46
47
47
/// <summary>
48
48
/// The query’s current execution state.
49
49
/// See online documentation
50
50
/// for more information.
51
51
/// </summary>
52
- public string state { get ; set ; }
52
+ public string State { get ; set ; }
53
53
54
54
/// <summary>
55
55
/// Indicates whether or not the query uses a streaming cursor.
0 commit comments