using System; using System.Collections.Generic; #nullable disable namespace MP.Data.DatabaseModels { public partial class Macchine { #region Public Properties public string CodMacchina { get; set; } public string Descrizione { get; set; } public string IdxMacchina { get; set; } public string Nome { get; set; } #endregion Public Properties } }