16 lines
337 B
C#
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; }
|
|
}
|
|
}
|