update x sync: abbozzo metodi, compila OK

This commit is contained in:
Samuele Locatelli
2024-07-18 19:14:10 +02:00
parent b38dcb5953
commit af27e297d9
23 changed files with 524 additions and 437 deletions
+14 -5
View File
@@ -1,18 +1,27 @@
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.ComponentModel.DataAnnotations;
#nullable disable
namespace MP.AppAuth.Models
{
public partial class Config
public partial class ConfigModel
{
#region Public Properties
public string Chiave { get; set; }
public string Note { get; set; }
public string Valore { get; set; }
public string ValoreStd { get; set; }
[Key, Column("chiave")]
public string Chiave { get; set; } = "";
[Column("valore")]
public string Valore { get; set; } = "";
[Column("valoreStd")]
public string ValoreStd { get; set; } = "";
[Column("note")]
public string Note { get; set; } = "";
#endregion Public Properties
}