Skip to content

Commit 8c478d8

Browse files
committed
fix: Modify gitignore
1 parent 7e76598 commit 8c478d8

File tree

4 files changed

+43
-1
lines changed

4 files changed

+43
-1
lines changed

.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ x86/
1717
bld/
1818
[Bb]in/
1919
[Oo]bj/
20-
[Ll]og/
2120
# Visual Studio 2015 cache/options directory
2221
.vs/
2322
# Uncomment if you have tasks that create the project's static files in wwwroot
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
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 numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
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 numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
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+
}

0 commit comments

Comments
 (0)