Files
gpw_next/GPW.CORE.Data/DbModels/TimbratureModel.cs
T
2022-01-26 14:38:18 +01:00

37 lines
1.1 KiB
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
namespace GPW.CORE.Data.DbModels
{
// <Auto-Generated>
// This is here so CodeMaid doesn't reorganize this document
// </Auto-Generated>
[Table("Timbrature")]
public partial class TimbratureModel
{
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; }
/// <summary>
/// Navigation property to TipoTimb
/// </summary>
[ForeignKey("CodTipoTimb")]
public virtual AnagTipoTimbModel CodTipoTimbNav { get; set; } = null!;
/// <summary>
/// Navigation property to Dipendente
/// </summary>
[ForeignKey("IdxDipendente")]
public virtual DipendentiModel DipNav { get; set; } = null!;
}
}