Files
mapo-core/MpDataLayer/DatabaseModels/TcStat.cs
T
2021-05-15 17:02:29 +02:00

17 lines
383 B
C#

using System;
using System.Collections.Generic;
#nullable disable
namespace MpDataLayer.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; }
}
}