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; // // This is here so CodeMaid doesn't reorganize this document // namespace MP.FileData.DatabaseModels { [Table("Articoli")] public partial class ArticoloModel { #region Public Properties [Key] public string CodArticolo { get; set; } public string DescArticolo { get; set; } public string Disegno { get; set; } public string Tipo { get; set; } #endregion Public Properties } }