using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; #nullable disable namespace BlaServApp.Data.DatabaseModels { /// /// Tabella Articoli /// [Table("Config")] public class Config { #region Public Properties [Key, Column("Chiave", Order = 0), MaxLength(50)] public string Chiave { get; set; } [Column("Note", Order = 3)] public string Note { get; set; } = ""; [Column("Valore", Order = 1)] public string Valore { get; set; } = ""; [Column("ValoreStd", Order = 2)] public string ValoreStd { get; set; } = ""; #endregion Public Properties } }