using System.ComponentModel.DataAnnotations.Schema;
#nullable disable
//
// This is here so CodeMaid doesn't reorganize this document
//
namespace MP.Data.DbModels
{
[Table("Gruppi2Operatori")]
public partial class Gruppi2OperModel
{
#region Public Properties
public int MatrOpr { get; set; } = 0;
public string CodGruppo { get; set; } = "";
///
/// Navigazione oggetto Operatori
///
[ForeignKey("MatrOpr")]
public virtual AnagOperatoriModel OperNav { get; set; } = null!;
///
/// Navigazione oggetto Machine
///
[ForeignKey("CodGruppo")]
public virtual AnagGruppiModel GruppiNav { get; set; } = null!;
#endregion Public Properties
}
}