Files
mapo-core/MP.AppAuth/DatabaseModels/Config.cs
T
2021-09-17 19:42:03 +02:00

16 lines
313 B
C#

using System;
using System.Collections.Generic;
#nullable disable
namespace MP.AppAuth
{
public partial class Config
{
public string Chiave { get; set; }
public string Valore { get; set; }
public string ValoreStd { get; set; }
public string Note { get; set; }
}
}