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
///
/// Tempo del tick-timer per verifica scadenza task di controllo
///
public int RefreshIntSec { get; set; } = 30;
///
/// Elenco degli oggetti da monitorare per update
///
public List TargetList { get; set; } = new List();
///
/// Veto prima di effettuare un nuovo controllo automatico
///
public int VetoCheckMinutes { get; set; } = 1;
#endregion Public Properties
}
}