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

24 lines
682 B
C#

using System;
using System.Collections.Generic;
#nullable disable
namespace MP.Data.DatabaseModels
{
public partial class Ecp
{
public int IdxEcp { get; set; }
public DateTime DataOraConf { get; set; }
public string IdxMacchina { get; set; }
public string KeyRichiesta { get; set; }
public int IdxOdl { get; set; }
public string CodArticolo { get; set; }
public int PezziConf { get; set; }
public int PezziScar { get; set; }
public int PezziDaRilav { get; set; }
public int MatrOpr { get; set; }
public string Cognome { get; set; }
public string Nome { get; set; }
}
}