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("Gruppi2Macchine")]
public partial class Gruppi2MaccModel
{
#region Public Properties
public string IdxMacchina { get; set; }
public string CodGruppo { get; set; }
///
/// Navigazione oggetto Machine
///
[ForeignKey("IdxMacchina")]
public virtual Macchine MachineNav { get; set; } = null!;
///
/// Navigazione oggetto Machine
///
[ForeignKey("CodGruppo")]
public virtual AnagGruppi GruppiNav { get; set; } = null!;
#endregion Public Properties
}
}