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

17 lines
379 B
C#

using System;
using System.Collections.Generic;
#nullable disable
namespace MP.Data.DatabaseModels
{
public partial class TcStat
{
public string CodArticolo { get; set; }
public string CodGruppo { get; set; }
public string IdxMacchina { get; set; }
public decimal TcStat1 { get; set; }
public int TcType { get; set; }
}
}