65df2b195d
- modifica per permettere conf parametrica valori inviati x successo/error - test su 3024 d jetco positivo
31 lines
842 B
C#
31 lines
842 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace IOB_UT_NEXT.Config.Special
|
|
{
|
|
public class PingDto
|
|
{
|
|
#region Public Properties
|
|
|
|
/// <summary>
|
|
/// Valore output da inviare in caso di PowerOff da check PING
|
|
/// </summary>
|
|
public int B_PowerOff { get; set; } = 0;
|
|
|
|
/// <summary>
|
|
/// Valore output da inviare in caso di PowerOn da check PING
|
|
/// es: 1 (Emergenza a 1 se presente), 129 (B7 = Emergenza armata)
|
|
/// </summary>
|
|
public int B_PowerOn { get; set; } = 1;
|
|
|
|
/// <summary>
|
|
/// Veto tra controlli segnale ping x evitare flood in secondi
|
|
/// </summary>
|
|
public int VetoCheckSec { get; set; } = 5;
|
|
|
|
#endregion Public Properties
|
|
}
|
|
} |