Files
gpw_next/GPW.CORE.Data/DbModels/Dipendenti2GruppiModel.cs
T
2022-01-28 07:56:14 +01:00

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