feat(api,core,domain): RobotSnapshot - почасовой отчет о загрузке роботов
This commit is contained in:
16
PARR.Domain/DTOs/RobotSnapshotDTO/RobotAnalyticsQuery.cs
Normal file
16
PARR.Domain/DTOs/RobotSnapshotDTO/RobotAnalyticsQuery.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
namespace PARR.Domain.DTOs.RobotSnapshotDTO
|
||||
{
|
||||
public record RobotAnalyticsQuery
|
||||
{
|
||||
public DateTimeOffset DateStart { get; init; }
|
||||
|
||||
public DateTimeOffset DateEnd { get; init; }
|
||||
|
||||
/// <summary>
|
||||
/// Смещение часового пояса
|
||||
/// </summary>
|
||||
public TimeSpan Offset { get; init; }
|
||||
|
||||
public string? Ip { get; init; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user