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("Dipendenti2Ruoli")]
public partial class Dipendenti2RuoliModel
{
public int IdxDipendente { get; set; }
public string CodRuolo { get; set; } = "";
///
/// Navigation property to Dipendente
///
[ForeignKey("IdxDipendente")]
public virtual DipendentiModel DipNav { get; set; } = null!;
}
}