Completato MON AsIs in BLazor

This commit is contained in:
Samuele Locatelli
2022-04-13 20:06:19 +02:00
parent 116ec93bb6
commit 31c142efa4
10 changed files with 312 additions and 36 deletions
+18
View File
@@ -0,0 +1,18 @@
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; }
}
}