15 lines
351 B
C#
15 lines
351 B
C#
|
|
namespace PARR.API.Settings
|
|||
|
|
{
|
|||
|
|
public class MonitoringSettings
|
|||
|
|
{
|
|||
|
|
public List<MonitoringRobotSettings> Robots { get; set; } = new List<MonitoringRobotSettings>();
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public class MonitoringRobotSettings
|
|||
|
|
{
|
|||
|
|
public required string Name { get; set; }
|
|||
|
|
|
|||
|
|
public TimeSpan InaccessibilityTime { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|