19 lines
392 B
C#
19 lines
392 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
#nullable disable
|
|
|
|
namespace MP.AppAuth.Models
|
|
{
|
|
public partial class Config
|
|
{
|
|
#region Public Properties
|
|
|
|
public string Chiave { get; set; }
|
|
public string Note { get; set; }
|
|
public string Valore { get; set; }
|
|
public string ValoreStd { get; set; }
|
|
|
|
#endregion Public Properties
|
|
}
|
|
} |