Files
gpw_next/GPW.CORE.Data/DbModels/GiustificativiModel.cs
T
2024-09-13 17:18:53 +02:00

27 lines
839 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("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;
/// <summary>
/// Navigation property to Dipendente
/// </summary>
[ForeignKey("IdxDipendente")]
public virtual DipendentiModel? DipNav { get; set; }
}
}