Files
2023-03-28 17:02:05 +02:00

60 lines
1.6 KiB
C#

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;
// <Auto-Generated>
// This is here so CodeMaid doesn't reorganize this document
// </Auto-Generated>
namespace WebDoorCreator.Data.DbModels
{
/// <summary>
/// Tabella dati Hardware
/// </summary>
[Table("GraphicParams")]
public class GraphicParamsModel
{
[Key, DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public int GraphicParamId { get; set; }
/// <summary>
/// Id del componente di riferimento
/// </summary>
public int compoId { get; set; } = 0;
/// <summary>
/// Testata del gruppo di parametri
/// </summary>
public string graphicParamsN { get; set; } = "";
/// <summary>
/// Titolo del parametro
/// </summary>
public string graphicParamKey { get; set; } = "";
/// <summary>
/// Nome del parametro scritto nel file DDF
/// </summary>
public string graphicParamName { get; set; } = "";
/// <summary>
/// Nome del parametro visualizzato dall'utente
/// </summary>
public string graphicParamAlias { get; set; } = "";
/// <summary>
/// Tipo del parametro
/// </summary>
public string graphicParamType { get; set; } = "";
/// <summary>
/// Tipo del parametro
/// </summary>
public string graphicParamDefaultVal { get; set; } = "";
}
}