Aggiunta preliminare progetti IM e Data x Sherpa Fatt nuovo

This commit is contained in:
Samuele Locatelli
2023-01-23 19:30:31 +01:00
parent 67097131a7
commit cc3d7ef9e3
2228 changed files with 120100 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
namespace SHERPA.Data.DbModels
{
// <Auto-Generated>
// This is here so CodeMaid doesn't reorganize this document
// </Auto-Generated>
[Table("Config")]
public partial class ConfigModel
{
public string Chiave { get; set; } = null!;
public string? Valore { get; set; }
public string? ValoreStd { get; set; }
public string? Note { get; set; }
}
}