using System; using System.Collections.Generic; #nullable disable namespace MP.Data.DatabaseModels { public partial class AnagArticoli { #region Public Properties public string CodArticolo { get; set; } public string DescArticolo { get; set; } public string Disegno { get; set; } public string Tipo { get; set; } public string Azienda { get; set; } #endregion Public Properties } }