23 lines
719 B
C#
23 lines
719 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
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("RegAttivitaExpl")]
|
|
public partial class RegAttivitaExplModel
|
|
{
|
|
public DateTime DataLav { get; set; }
|
|
public int IdxDipendente { get; set; }
|
|
public string? CognomeNome { get; set; }
|
|
/// <summary>
|
|
/// totale dei minuti di attività registrate per la giornata (da trigger suRegAttivita)
|
|
/// </summary>
|
|
public int? MinRegAtt { get; set; }
|
|
public string? DescrProj { get; set; }
|
|
}
|
|
}
|