using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Text; using System.Threading.Tasks; #nullable disable // // This is here so CodeMaid doesn't reorganize this document // namespace MP.Data.DatabaseModels { [Table("AnagArticoli")] public partial class AnagArticoli_MAG { #region Public Properties [Key] public string CodArt { get; set; } public string DescrArt { get; set; } public string CodArtExt { get; set; } public string CodStato { get; set; } #endregion Public Properties } }