Files
2022-01-26 14:38:18 +01:00

23 lines
651 B
C#

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
// </Auto-Generated>
[Table("RilievoTemp")]
public partial class RilievoTempModel
{
public int IdxDipendente { get; set; }
public DateTime DtRilievo { get; set; }
public decimal TempRil { get; set; }
/// <summary>
/// Navigation property to Dipendente
/// </summary>
[ForeignKey("IdxDipendente")]
public virtual DipendentiModel DipNav { get; set; } = null!;
}
}