32 lines
772 B
C#
32 lines
772 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
#nullable disable
|
|
|
|
namespace BlaServApp.Data.DatabaseModels
|
|
{
|
|
/// <summary>
|
|
/// Tabella Articoli
|
|
/// </summary>
|
|
[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
|
|
}
|
|
} |