Files
2021-09-18 10:55:24 +02:00

27 lines
794 B
C#

using System;
using System.Collections.Generic;
#nullable disable
namespace MP.AppAuth.Models
{
public partial class DatiMacchine
{
#region Public Properties
public string CodArticoloA { get; set; }
public string CodArticoloB { get; set; }
public bool HasCounter { get; set; }
public string IdxMacchina { get; set; }
public bool? InsEnabled { get; set; }
public bool? IsTrigerDbon { get; set; }
public bool? PalletChange { get; set; }
public int? RefreshPeriod { get; set; }
public string SerialPort { get; set; }
public bool? SimplePallet { get; set; }
public bool? Simulazione { get; set; }
public bool SLogEnabled { get; set; }
#endregion Public Properties
}
}