Files
gpw_next/GPW.CORE.Data/DbModels/RegAttivitaExplModel.cs
2022-01-26 14:38:18 +01:00

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; }
}
}