21 lines
587 B
C#
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!;
|
|
}
|
|
}
|