using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
#nullable disable
//
// This is here so CodeMaid doesn't reorganize this document
//
namespace MP.Data.DatabaseModels
{
[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 AnagGruppi GruppiNav { get; set; } = null!;
#endregion Public Properties
}
}