using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; #nullable disable // // This is here so CodeMaid doesn't reorganize this document // namespace MP.Data.DbModels { [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 } }