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