File tree 4 files changed +43
-1
lines changed
src/BuildingBlocks/src/StackSdks/Masa.BuildingBlocks.StackSdk.Tsc/Model/Log
4 files changed +43
-1
lines changed Original file line number Diff line number Diff line change 17
17
bld /
18
18
[Bb ]in /
19
19
[Oo ]bj /
20
- [Ll ]og /
21
20
# Visual Studio 2015 cache/options directory
22
21
.vs /
23
22
# Uncomment if you have tasks that create the project's static files in wwwroot
Original file line number Diff line number Diff line change
1
+ // Copyright (c) MASA Stack All rights reserved.
2
+ // Licensed under the MIT License. See LICENSE.txt in the project root for license information.
3
+
4
+ namespace Masa . BuildingBlocks . StackSdks . Tsc . Model ;
5
+
6
+ public class FieldAggregationRequest
7
+ {
8
+ public string Name { get ; set ; }
9
+
10
+ public string Alias { get ; set ; }
11
+
12
+ public AggregationTypes AggregationType { get ; set ; }
13
+ }
Original file line number Diff line number Diff line change
1
+ // Copyright (c) MASA Stack All rights reserved.
2
+ // Licensed under the MIT License. See LICENSE.txt in the project root for license information.
3
+
4
+ namespace Masa . BuildingBlocks . StackSdks . Tsc . Model ;
5
+
6
+ public class LogAggregationRequest
7
+ {
8
+ public IEnumerable < FieldAggregationRequest > FieldMaps { get ; set ; }
9
+
10
+ public string Query { get ; set ; }
11
+
12
+ public DateTime Start { get ; set ; }
13
+
14
+ public DateTime End { get ; set ; }
15
+ }
Original file line number Diff line number Diff line change
1
+ // Copyright (c) MASA Stack All rights reserved.
2
+ // Licensed under the MIT License. See LICENSE.txt in the project root for license information.
3
+
4
+ namespace Masa . BuildingBlocks . StackSdks . Tsc . Model ;
5
+
6
+ public class LogLatestRequest
7
+ {
8
+ public string Query { get ; set ; }
9
+
10
+ public DateTime Start { get ; set ; }
11
+
12
+ public DateTime End { get ; set ; }
13
+
14
+ public bool IsDesc { get ; set ; } = true ;
15
+ }
You can’t perform that action at this time.
0 commit comments