19 lines
509 B
C#
19 lines
509 B
C#
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; }
|
|
}
|
|
}
|