19 lines
489 B
C#
19 lines
489 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace MP.Data.DatabaseModels
|
|
{
|
|
[Table("Config")]
|
|
public partial class ConfigModel
|
|
{
|
|
public string Chiave { get; set; }
|
|
public string Valore { get; set; }
|
|
/// <summary>
|
|
/// Valore di default/riferimento per la variabile
|
|
/// </summary>
|
|
public string ValoreStd { get; set; }
|
|
public string Note { get; set; }
|
|
}
|
|
}
|