update x sync: abbozzo metodi, compila OK
This commit is contained in:
@@ -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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user