19 lines
476 B
C#
19 lines
476 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
#nullable disable
|
|
|
|
namespace MP.Data.DatabaseModels
|
|
{
|
|
public partial class VTcStat
|
|
{
|
|
public string CodArticolo { get; set; }
|
|
public string CodGruppo { get; set; }
|
|
public string IdxMacchina { get; set; }
|
|
public string CodMacchina { get; set; }
|
|
public string DescMacchina { get; set; }
|
|
public decimal TcStat { get; set; }
|
|
public int TcType { get; set; }
|
|
}
|
|
}
|