This commit is contained in:
Samuele Locatelli
2024-07-18 18:01:00 +02:00
parent 5e7081d445
commit b38dcb5953
3 changed files with 3 additions and 13 deletions
+19
View File
@@ -0,0 +1,19 @@
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
}
}