Files
mapo-core/MP.AppAuth/Models/ConfigModel.cs
T
2024-07-18 19:14:10 +02:00

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
}
}