Files
gpw_next/GPW.CORE.Data/DbModels/Dipendenti2RuoliModel.cs
2023-01-16 14:30:38 +01:00

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