Fix tempalte e lettura dati UL / Scarti

This commit is contained in:
Samuele Locatelli
2021-05-17 18:04:03 +02:00
parent 8457e0e2bf
commit f2fdd1a72f
7 changed files with 170 additions and 75 deletions
+18
View File
@@ -0,0 +1,18 @@
using System;
using System.Collections.Generic;
#nullable disable
namespace MP.Data.DatabaseModels
{
public partial class Actions
{
#region Public Properties
public string Azione { get; set; }
public string Class { get; set; }
public string Descrizione { get; set; }
#endregion Public Properties
}
}