22 lines
594 B
C#
22 lines
594 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
#nullable disable
|
|
|
|
namespace GPW.Data.DBModels
|
|
{
|
|
public partial class ImportEgaltech
|
|
{
|
|
public int IdxRiga { get; set; }
|
|
public DateTime Data { get; set; }
|
|
public decimal NOre { get; set; }
|
|
public TimeSpan Ora { get; set; }
|
|
public string Commessa { get; set; }
|
|
public string Fase { get; set; }
|
|
public string Note { get; set; }
|
|
public int IdxDipendente { get; set; }
|
|
public bool? FlgCaricato { get; set; }
|
|
public string DescRisultato { get; set; }
|
|
}
|
|
}
|