using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; #nullable disable // // This is here so CodeMaid doesn't reorganize this document // namespace MP.Data.DatabaseModels { [Table("AnagMagazzini")] public partial class AnagMagModel { #region Public Properties [Key, DatabaseGenerated(DatabaseGeneratedOption.Identity)] public int MagID { get; set; } public string CodMag { get; set; } = ""; public string CodCS { get; set; } = ""; public string DescMag { get; set; } = ""; public bool Nascosto { get; set; } = false; #endregion Public Properties } }