Files
gpw_next/GPW.CORE.Data/DbModels/StatsDayPresModel.cs
T
2024-03-05 16:27:34 +01:00

29 lines
812 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>
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
/// <summary>
/// Navigation property to Dipendente
/// </summary>
[ForeignKey("IdxDipendente")]
public virtual DipendentiModel DipNav { get; set; } = null!;
#endif
}
}