Files
limanapp/EgwControlCenter.Core/PatrolSettings.cs
T
2024-09-19 16:50:11 +02:00

31 lines
840 B
C#

using EgwControlCenter.Core.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace EgwControlCenter.Core
{
public class PatrolSettings
{
#region Public Properties
/// <summary>
/// Tempo del tick-timer per verifica scadenza task di controllo
/// </summary>
public int RefreshIntSec { get; set; } = 30;
/// <summary>
/// Elenco degli oggetti da monitorare per update
/// </summary>
public List<ControlTarget> TargetList { get; set; } = new List<ControlTarget>();
/// <summary>
/// Veto prima di effettuare un nuovo controllo automatico
/// </summary>
public int VetoCheckMinutes { get; set; } = 1;
#endregion Public Properties
}
}