feat(api,core,domain): Получение снапшотов работы роботов
This commit is contained in:
15
PARR.Domain/DTOs/RobotSnapshotDTO/RobotSnapshotQuery.cs
Normal file
15
PARR.Domain/DTOs/RobotSnapshotDTO/RobotSnapshotQuery.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
namespace PARR.Domain.DTOs.RobotSnapshotDTO
|
||||
{
|
||||
public record RobotSnapshotQuery
|
||||
{
|
||||
/// <summary>
|
||||
/// IP робота
|
||||
/// </summary>
|
||||
public string? Ip { get; init; }
|
||||
|
||||
/// <summary>
|
||||
/// Кол-во минут от текущего времени
|
||||
/// </summary>
|
||||
public int Minutes { get; init; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user