Files
gpw_next/GPW.Api/GPW.Data/DBModels/ImportEgaltech.cs
T
2021-10-18 15:43:53 +02:00

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; }
}
}