21 lines
539 B
C#
21 lines
539 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
#nullable disable
|
|
|
|
namespace GPW.Data.DBModels
|
|
{
|
|
public partial class Timbrature
|
|
{
|
|
public DateTime DataOra { get; set; }
|
|
public int IdxDipendente { get; set; }
|
|
public bool? Entrata { get; set; }
|
|
public string Ipv4 { get; set; }
|
|
public string CodTipoTimb { get; set; }
|
|
public bool? Approv { get; set; }
|
|
|
|
public virtual AnagTipoTimb CodTipoTimbNav { get; set; }
|
|
public virtual Dipendenti DipNav { get; set; }
|
|
}
|
|
}
|