using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace GPW.CORE.Data.DbModels
{
//
// This is here so CodeMaid doesn't reorganize this document
//
[Table("CheckVc19")]
public partial class CheckVc19Model
{
[Key, DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public int IdxCheckVc19 { get; set; }
public DateTime DtCheck { get; set; } = DateTime.Now;
public int IdxDipendente { get; set; }
public string Cognome { get; set; } = null!;
public string Nome { get; set; } = null!;
public DateTime Dob { get; set; }
public string Payload { get; set; } = null!;
///
/// Navigation property to Dipendente
///
[ForeignKey("IdxDipendente")]
public virtual DipendentiModel? DipNav { get; set; }
}
}