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 // public partial class StatsDayPresModel { [Key] public int IdxDipendente { get; set; } public DateTime LastOp { get; set; } public int NEnt { get; set; } = 0; public int NUsc { get; set; } = 0; public int IsPresent { get; set; } = 0; #if false /// /// Navigation property to Dipendente /// [ForeignKey("IdxDipendente")] public virtual DipendentiModel DipNav { get; set; } = null!; #endif } }