28 lines
635 B
C#
28 lines
635 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
#nullable disable
|
|
|
|
namespace MP.AppAuth.Models
|
|
{
|
|
public partial class ConfigModel
|
|
{
|
|
#region Public Properties
|
|
|
|
[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
|
|
}
|
|
} |