Files
Mapo-IOB-WIN/IOB-UT-NEXT/Config/Base/CounterDto.cs
T
2025-03-03 08:14:35 +01:00

36 lines
913 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IOB_UT_NEXT.Config.Base
{
/// <summary>
/// /Configurazione specifica gestione contapezzi
/// </summary>
public class CounterDto
{
/// <summary>
/// Abilita impostazione forzata contapezzi
/// </summary>
public bool EnableSetPzCount { get; set; } = false;
/// <summary>
/// Abilita impostazione pz richiesti
/// </summary>
public bool EnableSetPzReq { get; set; } = false;
/// <summary>
/// Abilita reset contapezzi a INIZIO setup
/// </summary>
public bool ResetOnStartSetup { get; set; } = false;
/// <summary>
/// Abilita Reset contapezzi a FINE setup
/// </summary>
public bool ResetOnStopSetup { get; set; } = false;
}
}