using System; using System.Collections.Generic; #nullable disable // // This is here so CodeMaid doesn't reorganize this document // 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 } }