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

30 lines
986 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
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("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!;
/// <summary>
/// Navigation property to Dipendente
/// </summary>
[ForeignKey("IdxDipendente")]
public virtual Dipendenti? DipNav { get; set; }
}
}