using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
namespace GPW.CORE.Data.DbModels
{
//
// This is here so CodeMaid doesn't reorganize this document
//
[Table("RegAttivitaExpl")]
public partial class RegAttivitaExplModel
{
public DateTime DataLav { get; set; }
public int IdxDipendente { get; set; }
public string? CognomeNome { get; set; }
///
/// totale dei minuti di attività registrate per la giornata (da trigger suRegAttivita)
///
public int? MinRegAtt { get; set; }
public string? DescrProj { get; set; }
}
}