Files
mapo-core/MP.Data/DatabaseModels/VetoTc.cs
T
2021-05-17 13:33:13 +02:00

16 lines
337 B
C#

using System;
using System.Collections.Generic;
#nullable disable
namespace MP.Data.DatabaseModels
{
public partial class VetoTc
{
public string IdxMacchina { get; set; }
public string CodArticolo { get; set; }
public bool? VetoTc1 { get; set; }
public decimal SogliaTc { get; set; }
}
}