17 lines
379 B
C#
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; }
|
|
}
|
|
}
|