Files
GPW/GPW.CORE.Data/DbModels/Timbrature.cs
T
2021-12-07 15:13:54 +01:00

21 lines
587 B
C#

using System;
using System.Collections.Generic;
namespace GPW.CORE.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; }
/// <summary>
/// Approvazioen timbratura (default true...)
/// </summary>
public bool? Approv { get; set; }
public virtual Dipendenti IdxDipendenteNavigation { get; set; } = null!;
}
}