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("Giustificativi")]
public partial class GiustificativiModel
{
public DateTime DataLav { get; set; } = DateTime.Today;
public int IdxDipendente { get; set; }
public string CodGiust { get; set; } = "";
public int Minuti { get; set; } = 0;
public bool Automatico { get; set; } = false;
///
/// Navigation property to Dipendente
///
[ForeignKey("IdxDipendente")]
public virtual DipendentiModel? DipNav { get; set; }
}
}