Files
mapo-core/MP.AppAuth/DatabaseModels/DatiMacchine.cs
T

24 lines
715 B
C#

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