using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; using Microsoft.EntityFrameworkCore; // // This is here so CodeMaid doesn't reorganize this document // namespace WebDoorCreator.Data.DbModels { /// /// Tabella dati Hardware /// [Table("GraphicParams")] public class GraphicParamsModel { [Key, DatabaseGenerated(DatabaseGeneratedOption.Identity)] public int GraphicParamId { get; set; } /// /// Id del componente di riferimento /// public int compoId { get; set; } = 0; /// /// Testata del gruppo di parametri /// public string graphicParamsN { get; set; } = ""; /// /// Titolo del parametro /// public string graphicParamKey { get; set; } = ""; /// /// Nome del parametro scritto nel file DDF /// public string graphicParamName { get; set; } = ""; /// /// Nome del parametro visualizzato dall'utente /// public string graphicParamAlias { get; set; } = ""; /// /// Tipo del parametro /// public string graphicParamType { get; set; } = ""; /// /// Tipo del parametro /// public string graphicParamDefaultVal { get; set; } = ""; } }