22 lines
607 B
C#
22 lines
607 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
#nullable disable
|
|
|
|
namespace MP.Data.DatabaseModels
|
|
{
|
|
public partial class VEcp
|
|
{
|
|
public DateTime DataOraConf { get; set; }
|
|
public string IdxMacchina { get; set; }
|
|
public int MatrApp { get; set; }
|
|
public DateTime DataFrom { get; set; }
|
|
public DateTime DataTo { get; set; }
|
|
public int PezziConf { get; set; }
|
|
public int PezziScar { get; set; }
|
|
public int PezziDaRilav { get; set; }
|
|
public string CommessaEsterna { get; set; }
|
|
public int TipoConf { get; set; }
|
|
}
|
|
}
|